/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# 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