/ Published in: Bash
searches for any php file in the current directory and sub-directories they applies the grep filter for anything with nav in the title
Expand |
Embed | Plain Text
find . -name '*.php' -exec grep "nav*" {} \;
You need to login to post a comment.
