Skip to content

Instantly share code, notes, and snippets.

@yosimasu
Last active August 29, 2015 14:14
Show Gist options
  • Save yosimasu/011e02900bf39411dcfc to your computer and use it in GitHub Desktop.
Save yosimasu/011e02900bf39411dcfc to your computer and use it in GitHub Desktop.
Backup home directory through rsync in MAC Box
#!/usr/bin/env bash
START=$(date +%s)
sudo rsync -a8ESv --progress --delete --exclude-from=.rsyncignore ~ /Volumes/DATA
FINISH=$(date +%s)
echo "total time: $(( ($FINISH-$START) / 60 )) minutes, $(( ($FINISH-$START) % 60 )) seconds"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment