Skip to content

Instantly share code, notes, and snippets.

@coolaj86
Last active February 5, 2021 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolaj86/4b2f4bf87536aa2ef86decdaa0eb24e0 to your computer and use it in GitHub Desktop.
Save coolaj86/4b2f4bf87536aa2ef86decdaa0eb24e0 to your computer and use it in GitHub Desktop.

cp

sudo cp -aRv -x -n ~/ /Volumes/Backup/ ;

rsync

sudo rsync -hx -avP -HAX --exclude 'node_modules' ~/ /Volumes/Backup/ ;

rclone

rclone sync -vP --transfers=1 --order-by name --check-first --exclude 'node_modules/**' --exclude '.Spotlight-*/**' --exclude '.cache*/**' ~/ /Volumes/Backup/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment