# Copy a file from remote server to local
$ scp remotehost:<remote_source> <local_destination>
## Upload local file to remote server from linux
# For small file
$ scp <local_source> remotehost:<remote_destination>
# For big file
$ rsync -avzP <local_source> remotehost:<remote_destination>