Difference between revisions of "Scp"
From Ilianko
(Created page with "Example syntax for Secure Copy (scp) What is Secure Copy? scp allows files to be copied to, from, or between different hosts. It uses ssh for data transfer and provides the same...") |
|||
Line 1: | Line 1: | ||
− | + | '''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" | |
− | your_username@rh2.edu:/some/remote/directory/ | + | 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 | ||
− | + | [[Category:ssh]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 13:23, 28 May 2012
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\} .