Unix titbits
find . -newermt '30 seconds ago' -print find ('.' = files in current dir and subfolders thereof) -newermt (an option, see man page) (files changed within) '30 seconds ago' -print (don't forget to print the results to std output) :D find . \! -name ".DS_Store" -type f -print find only plain/standard files (-type f) NOT called .DS_Store (\! -name ".DS_Store")(NB escaped !)