Re: find -ctime n
On 22 May 2007 14:15:11 -0700, Atropo
<lxvasquez@gmail.com> wrote:
>
>
> Hi all, what I'm trying to do is just list the directories created
> after May 13.
> newbie just R'ngTFM, the find command i drop brings me only the first
> of what i want
>
> how could I tweak this find?
>
> cofusee@Norka> find . -type d -mtime 9 -print
> ./070514
> cofusee@Norka> find . -type d -ctime 9 -print
> ./070514
> cofusee@Norka>
>
find . -type d -ctime -10 -print
(note: ctime is not exactly the same as "creation time", which does not
exist in standard Unix filesystems)
--
Crito, I owe a cock to Asclepius; will you remember to pay the debt?
-- Socrates' last words
|