Return to Snippet

Revision: 19577
at June 19, 2010 00:02 by gabrielsmith


Updated Code
find . -name '*.php' -exec grep "nav*" {} \;

Revision: 19576
at October 26, 2009 09:31 by gabrielsmith


Initial Code
find . -name '*.php' | grep "nav*"

Initial URL


Initial Description
searches for any php file in the current directory and sub-directories they applies the grep filter for anything with nav in the title

Initial Title
Search for files

Initial Tags


Initial Language
Bash