/ 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
Copy this code and paste it in your HTML
find . -name '*.php' -exec grep "nav*" {} \;