|
Navigation Articles
Linux Downloads Search Packages Error log Distros/ OS Softwares CMS Help & Man Pages
Others |
Main /
UsingSCPscp - secure copy (remote file copy program) To use the scp command to copy directories between systems, use the following command: scp -r directory-name userid@hostname:directory-name2 To use the scp command to copy files between systems, use the following command: scp file-name1 userid@host-name:file-name2
# scp -r ssl root@33.33.336.33:/root/ssl/
root@33.33.336.33's password:
-p Preserves modification times, access times, and modes
from the original file.
-r Recursively copy entire directories.
-v Verbose mode.
|