9 lines
164 B
Bash
Executable File
9 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
|
|
define="$1"
|
|
where="$2"
|
|
if [[ "x$where" == "x" ]]; then
|
|
where=.
|
|
fi
|
|
exec grep --exclude-dir .svn --color=auto -RI "define *\\<${define}\\>" ${where}
|