/ Published in: Bash
Expand |
Embed | Plain Text
# 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
You need to login to post a comment.
