How to scp from remote to local
Here are simple way to copy files from remote server into local machine :scp username@server:/path/file /your/path/local/directory
If you're using key pem, then :
scp -i key.pem username@server:/path/file /your/path/local/directory
Add new comment