rsync

Fast incremental file transfer utility for synchronizing files

brewmacoslinux
Try with needOr install directly
Source

About

Utility that provides fast incremental file transfer

Commands

rsync

Examples

Sync a local directory to a remote server$ rsync -avz /local/path/ user@remote.host:/remote/path/
Sync a remote directory to local machine with delete$ rsync -avz --delete user@remote.host:/remote/path/ /local/path/
Sync between two local directories with progress$ rsync -av --progress /source/dir/ /destination/dir/