Skip to content

Instantly share code, notes, and snippets.

@gregmark
Last active June 25, 2021 03:20
Show Gist options
  • Save gregmark/26a2a26c4c2ccaedf60e3e90863206ba to your computer and use it in GitHub Desktop.
Save gregmark/26a2a26c4c2ccaedf60e3e90863206ba to your computer and use it in GitHub Desktop.
Find command utility on MacOSX

find command on MacOSX 10.14.6 (Mojave)

Move files older than X=<number of weeks>

find . -ctime +${X}w -print0 | xargs -0 -I{} mv {} /Volumes/USB_DRIVE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment