/ 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
find . -iname <file_pattern> -exec grep -n <text> {} \; -print
You need to login to post a comment.
