Return to Snippet

Revision: 12227
at March 6, 2009 18:03 by kfaulk1


Initial Code
## To find by file type in this case, .e and .pl files
## replace <string> with desired string to grep for...
find . | egrep -i "\.(e|pl)" | xargs grep <string>

Initial URL


Initial Description


Initial Title
grep string in file type

Initial Tags
search, find

Initial Language
Bash