Find: Difference between revisions
From Hackepedia
Jump to navigationJump to search
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..." |
consistency with ctime page |
||
Line 1: | Line 1: | ||
== To find a file | == To find a file changed in the last X days == | ||
The following prints a file | The following prints a file changed in the last day | ||
find . -ctime -1 -print | find . -ctime -1 -print |