forked from openkylin/platform_build
Fix typo that broke cgrep.
Change-Id: Ic87f4bff1ee52a201c197c5664ff2e91648b0b53
This commit is contained in:
parent
c9ef69c32c
commit
0c26d34269
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue