Return to Snippet

Revision: 28137
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
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
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