bin/sgrep

12 lines
241 B
Plaintext
Raw Permalink Normal View History

2010-08-02 11:14:18 -04:00
#!/bin/sh
2012-02-01 09:06:02 -05:00
grep -E --binary-files=without-match \
2010-08-02 11:14:18 -04:00
--exclude-dir=CVS \
--exclude-dir=.svn \
--exclude-dir=.hg \
--exclude-dir=.git \
--exclude '*~' \
--exclude '.#*' \
--exclude '#*' \
--exclude '*-' \
"$@"