Grep options
Basic
$ grep -ri blabla *
Exclude meaningless directories
grep -R --exclude-dir={node_modules,server} TODO *
Find output NOT matching the pattern
Basic
$ grep -ri blabla *
Exclude meaningless directories
grep -R --exclude-dir={node_modules,server} TODO *
Find output NOT matching the pattern