Three Commands for Remote File Download in Linux (scp/ftp/wget)

Three Commands for Remote File Download in Linux (scp/ftp/wget)

1、scp命令 scp /home/work/source.txt [email protected]:/home/work/ #Copy the local source.txt file to the /home/work directory on the machine 192.168.0.10 scp [email protected]:/home/work/source.txt /home/work/ #Copy the source.txt file from the machine 192.168.0.10 to the local /home/work directory scp [email protected]:/home/work/source.txt [email protected]:/home/work/ #Copy the source.txt file from the machine 192.168.0.10 to the /home/work directory on the machine 192.168.0.11 scp -r /home/work/sourcedir … Read more