Can we search a term (eg. \"onblur\") recursively in some folders only in specific files (html files)?
grep -Rin \"onblur\" *.html
This ret
grep -r --include "*.html" onblur .
Got it from : How do I grep recursively?