rsync is a powerful command-line utility for efficiently transferring and synchronizing files and directories between two locations, whether it’s on the same machine or across a network. It’s a staple tool for system administrators, developers, and anyone who needs to manage files effectively.
Basic Syntax
rsync [options] source destination
source
: The location of the files to be copied.destination
: The location where the files will be copied to.
Copy Files Locally
rsync -av source/ destination/
-a
(archive) → Preserves file permissions, timestamps, symbolic links, etc.-v
(verbose) → Shows detailed output.
Copy Files Over SSH
rsync -av -e "ssh -p 22" /local/path user@remote_host:/remote/path
-e "ssh -p 22"
→ Uses SSH for secure transfer on port 22.
Sync Remote to Local
rsync -av user@remote_host:/remote/path /local/path
Delete Files in Destination Not in Source
rsync -av --delete /source/ /destination/
Exclude Specific Files or Directories
rsync -av --exclude='*.log' --exclude='tmp/' /source/ /destination/
Create an Exclusion List
Create a file, e.g., exclude.txt, and list the files or directories you want to exclude:
# exclude.txt*.logtemp/cache/backup.tar.gz
Run with --exclude-from
:
rsync -av --exclude-from=exclude.txt /source/ /destination/
Show Progress While Copying
rsync -av --progress /source/ /destination/
Limit Bandwidth Usage
rsync -av --bwlimit=1000 /source/ /destination/
--bwlimit=1000
→ Limits bandwidth usage to 1000 KB/s.
Sync with Deletion
rsync -av --delete --dry-run /source/ /destination/
- Any extra files in
/source/
not in/destination/
will be deleted.