Find

From Hackepedia
Revision as of 06:06, 14 August 2010 by 91.33.238.120 (talk) (Created page with "== To find a file created in the last X days == The following prints a file created/changed in the last day find . -ctime -1 -print Also see ctime. == To find a file acc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

To find a file created in the last X days

The following prints a file created/changed in the last day

find . -ctime -1 -print

Also see ctime.

To find a file accessed 30 days or before

To see files that were accessed last 30 or more days from now you'd do

find . -atime +30 -print

Also see atime