Bill MacKenty

  Home     Computing     Teaching     Bushcraft     Games     Writing     About  

OS X HOWTO : finding recently changed files

Posted in HOWTO os x on 27 - August 2009 at 03:41 PM (14 years ago). 290 views.

Yummy, yummy yummy:

1. open terminal
2. type any of these:

find . -mtime -1 -print
find . -ctime -3
find . -type f -mtime -20

I knew this was possible on OS X, I had forgotten. Thanks to Paul Chiu at 24hourapps for the nice entry. And of course, find’s man’s page.