Tag: dry run
-
Performing a dry run with rsync
One of the many useful options rsync offers is the ability to do a dry-run – in effect showing you what it would do without actually making any changes. To achive this we use the -n flag, like so: rsync -n /source /destination In practice we would likely use the -n switch…