Tag Archive | "transfer"

Grabbing and Sending files and folders over SSH

Saturday, August 15, 2009

0 Comments

SCP allows you to transfer files over ssh between computers Copying to remote machines To copy a file to a remote machine run the following scp ~/file/to/be/transfered username@hostname:~/destinationfolder If you want to copy a directory you would use -r which would look like this scp -r /folder/to/be/transfered username@hostname:/path/to/destination and if you want to specify a [...]

Continue reading...