Merge remote branch 'arlpc33/master'

This commit is contained in:
Josh Holtrop 2011-03-04 12:37:13 -05:00
commit 6f71d61c4c

View File

@ -1,4 +1,8 @@
#!/bin/sh
#!/bin/bash
define="$1"
exec grep --exclude-dir .svn --color=auto -R "define *\\<${define}\\>" .
where="$2"
if [[ "x$where" == "x" ]]; then
where=.
fi
exec grep --exclude-dir .svn --color=auto -RI "define *\\<${define}\\>" ${where}