/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
## 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>