Hi,
I've got this s3sync working pretty well backing up my /Users/<username> directory under OS X.
However I'd like to specify which folders with this directory should and shouldn't be synced.
For instance I want to omit the folders 'Library' as its just a load of system files I don't want to backup, and 'Downloads' as the content is very temporary.
How can I specify a list of folders to sync, or a list of folders not to sync witin the parent folder?
Currently I have this:
/usr/bin/ruby $INSTALL_LOCATION/s3sync.rb -r --ssl --delete /Users/<username> $BUCKET:/
Would the code below be an acceptable solution? And if so, is there a better way than this?
/usr/bin/ruby $INSTALL_LOCATION/s3sync.rb -r --ssl --delete /Users/<username>/folder-to-sync-1 $BUCKET:/
/usr/bin/ruby $INSTALL_LOCATION/s3sync.rb -r --ssl --delete /Users/<username>/folder-to-sync-2 $BUCKET:/
/usr/bin/ruby $INSTALL_LOCATION/s3sync.rb -r --ssl --delete /Users/<username>/folder-to-sync-3 $BUCKET:/
Thanks for any help
R