Bash with Rsync into the future
To sync all of the mp3 files from a path (pwd) to another location, you can run this first to test to see what would copy: find -ctime -60 -name “*.mp3″ -print0 | rsync -aucvn –files-from=- –from0 ./ /path/to/destination/ Then remove the “n” from the rsync flags to copy, archive style, all files with update…