scp username[at]10-network.com:~/html/3.gif .
//copy a remote directory to local machine
scp -r username[at]10-network.com:~/html .
//rsync uses ssh by default since version 2.6 (2004)
//rsync over ssh using port 222
rsync -v --rsh='ssh -p222' user[at]example.10-network.net:~/image.jpg .
//...or:
rsync -v -e 'ssh -p222' user[at]example.10-network.net:~/image.jpg .
//OK
rsync -avhe 'ssh -p22' --progress payless[at]paylesstosell.net:~/html/* .
Comments
Comments are not available for this entry.