This revision is from 2012/01/22 13:46. You can Restore it.
Usage(Edit)
This shell script is a handy way to spiff up "grep -r" a bit. It ignores the .svn/ and locale/ dirs, plus it will automatically append "." as the directory to search. Nothing much, but a handy one to put in ~/bin
Code(Edit)
#!/bin/sh NEEDLE="" HAYSTACK="" [ "$HAYSTACK" == "" ] && HAYSTACK=. grep --exclude-dir=locale --exclude-dir=.svn -r "$NEEDLE" "$HAYSTACK"