Fix typo that broke cgrep.

Change-Id: Ic87f4bff1ee52a201c197c5664ff2e91648b0b53
This commit is contained in:
Mike Dodd 2011-04-07 13:29:06 -07:00
parent c9ef69c32c
commit 0c26d34269
1 changed files with 1 additions and 1 deletions

View File

@ -831,7 +831,7 @@ function jgrep()
function cgrep()
{
find .a -name .repo -prune -o -name .git -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
find . -name .repo -prune -o -name .git -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
}
function resgrep()