Scp

From Ilianko

scp - secure copy, позволява копиране между различни хостове с използване на ssh за връзка.

Копиране на файл "foobar.txt" от отдалечената машина на локалната:

shell# scp your_username@remotehost.edu:foobar.txt /some/local/directory 

Копиране на файл "foobar.txt" от локалната на отдалечената машина:

shell# scp foobar.txt your_username@remotehost.edu:/some/remote/directory 

Копиране на директория "foo" от локалната отдалечената машина в директория "bar"

shell#$ scp -r foo your_username@remotehost.edu:/some/remote/directory/bar 

Копиране на файл "foobar.txt" от машина "rh1.edu" на машина "rh2.edu"

shell# scp your_username@rh1.edu:/some/remote/directory/foobar.txt your_username@rh2.edu:/some/remote/directory/ 


Копиране на няколко файла едновременно:

shell$ scp foo.txt bar.txt your_username@remotehost.edu:~ 
shell$ scp your_username@remotehost.edu:~/\{foo.txt,bar.txt\} . 


http://www.hypexr.org/linux_scp_help.php