I want to exclude both "*log*"
and ./tags
from grep.
What i do is:
grep -rI "PatternToSearch" ./path --exclude="*log*"
or this:
grep -rI "PatternToSearch" ./path --exclude="tags"
is it possible to merge both exclude patterns in one grep?