Return to Snippet

Revision: 47553
at June 9, 2011 23:07 by loungerdork


Initial Code
# Search for files modified before the past n days:
# find path -mtime -n
# files modified within the last 7 dats
find . -mtime -7
# Search for files modified before the past n days:
# find path -mtime +n
find . -mtime +3

Initial URL


Initial Description


Initial Title
Find files last modified by time

Initial Tags
find

Initial Language
Bash