Posts tagged as:

rsync

Rsync With A Non-Standard SSH Port

by lifeLinux on August 23, 2011

How do I tell rsync to use a different port for SSH ? # rsync -av -e “ssh -p [port_number]” user@ip:/path/to/source/ /path/to/destination/

{ 0 comments }

How To Copy Hidden Files On Linux

by lifeLinux on November 23, 2010

Q. Is there an easy way to recursively copy all files include hidden files in a directory to another directory? A. Using rsync command is a better solution.

{ 0 comments }