Revision: 28137
Updated Code
at August 14, 2011 08:10 by beneberle
Updated Code
# to copy directory from remote to local machine scp -r [email protected]:/path/to/remote/directory/to/copy/* /path/to/local/destination/directory # to copy directory from local to remote machine scp -r /path/to/local/directory/to/copy/* [email protected]:/path/to/remote/destination
Revision: 28136
Updated Code
at July 16, 2010 01:17 by beneberle
Updated Code
# to copy directory from remote to local machine scp -r [email protected]:/path/to/remote/directory/to/copy/ /path/to/local/destination/directory # to copy directory from local to remote machine scp -r /path/to/local/directory/to/copy/ [email protected]:/path/to/remote/destination
Revision: 28135
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 2, 2010 00:52 by beneberle
Initial Code
# to copy directory from remote to local machine scp [email protected]:/path/to/remote/directory/to/copy/ /path/to/local/destination/directory # to copy directory from local to remote machine scp /path/to/local/directory/to/copy/ [email protected]:/path/to/remote/destination
Initial URL
Initial Description
You will be prompted for a password after issuing this command
Initial Title
UNIX: Secure Copy folders between UNIX Machines
Initial Tags
unix
Initial Language
Bash