12 lines
238 B
Plaintext
12 lines
238 B
Plaintext
|
#!/bin/sh
|
||
|
grep --binary-files=without-match \
|
||
|
--exclude-dir=CVS \
|
||
|
--exclude-dir=.svn \
|
||
|
--exclude-dir=.hg \
|
||
|
--exclude-dir=.git \
|
||
|
--exclude '*~' \
|
||
|
--exclude '.#*' \
|
||
|
--exclude '#*' \
|
||
|
--exclude '*-' \
|
||
|
"$@"
|