Answers for "ubuntu copy file from remote server"

8

how to copy a file to a remote server using the command line

scp file.txt [email protected]:/remote/directory
Posted by: Guest on May-20-2020
0

copy files from an ubuntu server to remote server through ssh remote with cronjobs

tar cvzf - /path/to/myBase.sql | ssh USER@HOST "dd of=/path/to/backups/myBase$(date +%Y%m%d%H%M%S).tar.gz"
Posted by: Guest on February-07-2021

Code answers related to "ubuntu copy file from remote server"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language