bug-findutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: find's %Y


From: jidanni
Subject: Re: find's %Y
Date: Wed, 07 Apr 2010 14:15:20 +0800

What's barfy is it turns out the same command sometimes gives different output!
$ mount|grep /tmp #df shows plenty of space too.
tmpfs on /tmp type tmpfs (rw)
14:04 ~$ find /tmp/NOSHUCH -printf %Y\\n
N
14:05 ~$ find /tmp/sleep  -printf %Y\\n
f
14:05 ~$ find /tmp -name sleep  -printf %Y\\n ###COMPARE
N
N
14:05 ~$ cd /tmp; ln -s /etc/debian_version .
14:06 tmp$ find /tmp/debian_version -printf %Y\\n
f
14:07 tmp$ find /tmp -name debian_version -printf %Y\\n
f
14:07 tmp$ find /tmp -name debian_version -printf %Y\\n
f
14:07 tmp$ find /tmp -name sleep -print -printf %Y\\n
/tmp/sleep
f
/tmp/mkinitramfs_VcP7aW/bin/sleep
f
14:08 tmp$ find /tmp -name sleep  -printf %Y\\n ###COMPARE
f
f




reply via email to

[Prev in Thread] Current Thread [Next in Thread]