Skip to content

Instantly share code, notes, and snippets.

@jfeilbach
Last active May 21, 2022 16:43
Show Gist options
  • Save jfeilbach/3304557b799b85236fe39bfc6893a4d7 to your computer and use it in GitHub Desktop.
Save jfeilbach/3304557b799b85236fe39bfc6893a4d7 to your computer and use it in GitHub Desktop.
rsync downloads to remote storage
rsync -avhz --stats --progress --exclude='$RECYCLE.BIN' --exclude='$Recycle.Bin' --exclude='.AppleDB' --exclude='.AppleDesktop' --exclude='.AppleDouble' --exclude='.com.apple.timemachine.supported' --exclude='.dbfseventsd' --exclude='.DocumentRevisions-V100*' --exclude='.DS_Store' --exclude='.fseventsd' --exclude='.PKInstallSandboxManager' --exclude='.Spotlight*' --exclude='.SymAV*' --exclude='.symSchedScanLockxz' --exclude='.TemporaryItems' --exclude='.Trash*' --exclude='.vol' --exclude='.VolumeIcon.icns' --exclude='Desktop DB' --exclude='Desktop DF' --exclude='hiberfil.sys' --exclude='lost+found' --exclude='Network Trash Folder' --exclude='pagefile.sys' --exclude='Recycled' --exclude='RECYCLER' --exclude='System Volume Information' --exclude='Temporary Items' --exclude='Thumbs.db' /Volumes/Raid\ 0/Torrent\ Downloads/ /Volumes/vol2/ops_torrents/
--exclude='$RECYCLE.BIN' \
--exclude='$Recycle.Bin' \
--exclude='.AppleDB' \
--exclude='.AppleDesktop' \
--exclude='.AppleDouble' \
--exclude='.com.apple.timemachine.supported' \
--exclude='.dbfseventsd' \
--exclude='.DocumentRevisions-V100*' \
--exclude='.DS_Store' \
--exclude='.fseventsd' \
--exclude='.PKInstallSandboxManager' \
--exclude='.Spotlight*' \
--exclude='.SymAV*' \
--exclude='.symSchedScanLockxz' \
--exclude='.TemporaryItems' \
--exclude='.Trash*' \
--exclude='.vol' \
--exclude='.VolumeIcon.icns' \
--exclude='Desktop DB' \
--exclude='Desktop DF' \
--exclude='hiberfil.sys' \
--exclude='lost+found' \
--exclude='Network Trash Folder' \
--exclude='pagefile.sys' \
--exclude='Recycled' \
--exclude='RECYCLER' \
--exclude='System Volume Information' \
--exclude='Temporary Items' \
--exclude='Thumbs.db'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment