rsync Local Folder with Remote
Synchronize a local directory with a remote directory via ssh and compression
rsync -az -e ssh --delete ip_addr:/home/public /home/local
Synchronize a local directory with a remote directory via ssh and compression
rsync -az -e ssh --delete ip_addr:/home/public /home/local
Copy files/folder from a remote server to this system.
scp -r binnyva@192.168.0.100:/home/binnyva/folder_to_copy .
Backup a folder to another local folder using the rsync tool.
rsync -av ~/Scripts/ /var/Backup/Rsync/Scripts/
a = Archive Mode
v = Verbose
[tags]backup,linux,command,rsync,folder,local,tools[/tags]