How can I use find to select files that have been written and not modified in the last minute?
I know I can do the other way around, find files modified in the last 60 seconds with -mtime -60s but I want the ones that haven't been modified in the last 60 seconds.
EDIT: Someone else tagged this osx, but I actually use Linux, where I get this error if I use seconds:
find ??/ -mtime +60s -name blah.tsv
find: invalid argument `+60s' to `-mtime'
