I\'d like to use grep to find out if/where an html class is used across a bunch of files. The regex pattern should find not only <
grep
<
Depends what metacharacters your grep supprts, try:
'class=\"([a-z]+ ?)+\"'