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'
link|improve this question

73% accept rate
feedback

4 Answers

up vote 5 down vote accepted

Use find /path -mtime +60s

The - just before the digits is not a regular "argument dash", but means "less than". + then is "more than".

From man find:

All primaries which take a numeric argument allow the number to be preceded by a plus sign (``+'') or a minus sign (``-''). A preceding plus sign means ``more than n'', a preceding minus sign means ``less than n'' and neither means ``exactly n''.

It should be noted that for exactly n, the time is rounded. So 1 (1 day) does not mean 86400 seconds.

link|improve this answer
2  
Strictly speaking, +60 is not the opposite of -60, for the same reason less than is not the opposite of greater than: Both exclude the exact value they compare to. But your question does not indicate which behavior you want, exactly. – Daniel Beck Jan 27 at 16:56
This isn't exactly the same indeed, since ! reverts the original "query". But agreed, the OP doesn't specify what he wants. – Karolos Jan 27 at 17:02
feedback

You should be able to use

find . ! -mtime -60s
link|improve this answer
1  
Requires parenthesis for me: find . !( -mtime -60s ) – Oliver Salzburg Jan 27 at 16:51
@OliverSalzburg: On my Mac, it works OK without the parenthesis (Darwin Kernel Version 11.2.0). – Karolos Jan 27 at 16:52
feedback

The second - in -mtime -60s is not an option delimiter.

-mtime is an option, and it is followed by an option argument. The option argument is -60s, and the - in it is part of the option argument itself, not an option delimiter. It means "less than 60 seconds". Option arguments 60s and +60s mean "equal to 60 seconds" and "greater than 60 seconds", respectively.

The Apple MacOS manual and the FreeBSD manual mention the + and - prefixes in exactly one place, and forget to explain anywhere what they are. This is what they are.

(The GNU Info manual for GNU find has the same omission, interestingly enough. However, GNU find's syntax for times is somewhat different to the BSD and MacOS find syntax.)

Further reading

  • Apple incorporated (2008-02-24). find MacOS 10 manual page. MacOS 10 Developer Library.
  • find(1). 2010-03-17. FreeBSD General Commands Manual. FreeBSD Project.
link|improve this answer
1  
It's even worse than just explaining it in exactly one place: All other options refer to atime for the time format, but that does also not explain the prefixes. It's a separate section that isn't referenced. – Daniel Beck Jan 27 at 16:59
Indeed; and you'll find that I wrote that. I wrote "mention", and "forget to explain anywhere". ☺ – JdeBP Jan 27 at 17:05
I didn't mean to contradict you, just wanted to point out that the exactly one place is also the worst possible place from a "let's just skim the man page" POV. – Daniel Beck Jan 27 at 17:07
But it isn't explained in exactly one place. It's not explained in any place at all. For a set of manual pages that is generally written and edited fairly well, in my experience, it's a surprising omission. – JdeBP Jan 27 at 17:28
See my answer. There is actually a place where it's explained (unfortunately in very abstract terms), but it's not part of the atime explanation or referenced there. – Daniel Beck Jan 27 at 17:41
show 1 more comment
feedback

Although you tagged this OSX, -mtime +60s is not portable. The following is, however:

find . -mmin +1

Example

$ ls *
four.txt  one.txt  three.txt  two.txt

$ touch foo && find . -mmin +1
.
./three.txt
./four.txt
./two.txt
./one.txt
link|improve this answer
Which is the opposite of what he wants, and the same as he already has. – Daniel Beck Jan 27 at 16:57
@DanielBeck my bad. fixed. – SiegeX Jan 27 at 16:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.