/ Published in: Bash
will search current directory and sub-directories for all php files that have been modified in the last 16 days
Expand |
Embed | Plain Text
find . -name '*.php' -mtime -16
You need to login to post a comment.
will search current directory and sub-directories for all php files that have been modified in the last 16 days
find . -name '*.php' -mtime -16
You need to login to post a comment.