/ Published in: Bash
Searches down the current directory every file whose name matches (case insensitively) {{file_pattern}} for the regexp {{text}}.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -iname <file_pattern> -exec grep -n <text> {} \; -print