“I work on a project on which I regularly want to grep the
directory tree for a particular word but without including the cvs/
and doc/ directories. Happily, grep has an exclude-dir option to do
just this:grep -R –exclude-dir=cvs –exclude-dir=doc foo *
“It searches recursively for foo without looking in cvs/ or
doc/, so the output isn’t clogged up with unwanted results.
Great.“The problem with this is that (in true sys admin style) I’m
lazy and don’t want to do all that typing. One solution to this is
to set up an alias in the ~/.bashrc file:”
Open-Source Software Shortcut, Excluding Directories From Grep
By
Juliet Kemp
Get the Free Newsletter!
Subscribe to Developer Insider for top news, trends, & analysis