/ Published in: Bash
Searches all html files under the current directory for searchterm.
Expand |
Embed | Plain Text
find ./ -type f -name "*.html" | xargs grep -r 'searchterm'
You need to login to post a comment.
Searches all html files under the current directory for searchterm.
find ./ -type f -name "*.html" | xargs grep -r 'searchterm'
You need to login to post a comment.