I have created 3 files in SunOS, 2 of which have creation time varying in milliseconds. The 3rd file varying by a second. find <path> -newer does not seem to take milliseconds into consideration.
bash-3.2$ touch -d 2012-11-20T12:59:00.1234 /tmp/abc.txt
bash-3.2$ touch -d 2012-11-20T12:59:00.4567 /tmp/abc1.txt
bash-3.2$ touch -d 2012-11-20T12:59:01.0000 /tmp/abc2.txt
bash-3.2$ ls -lE /tmp/abc*
-rw-r--r-- 1 blahuser root 0 2012-11-20 12:59:00.123400000 +0100 /tmp/abc.txt
-rw-r--r-- 1 blahuser root 0 2012-11-20 12:59:00.456700000 +0100 /tmp/abc1.txt
-rw-r--r-- 1 blahuser root 0 2012-11-20 12:59:01.000000000 +0100 /tmp/abc2.txt
Here find /tmp -newer /tmp/abc.txt should have ideally displayed both /tmp/abc1.txt and /tmp/abc2.txt but actually it outputs only /tmp/abc2.txt
bash-3.2$ find /tmp -type f -newer /tmp/abc.txt
/tmp/abc2.txt
Is there any other option for find which also takes milliseconds into consideration?