Saturday 31 March 2012

Remote file copying in shell

You can use "scp" command to copy files between systems. This utility is based on "ssh" protocol.
Usage:
scp /home/* username@destinationMachine:/destination_path


The above command copied all files in home folder to destinationMachine's path.

No comments:

Post a Comment