Merge "Teach mgrep to find soong/*.go files." am: 46d9bf8f9a
am: bb67e3ae54
am: f515b91b3f
Change-Id: Idfa23df410e92a6afa7953cceb2286b3b994bbee
This commit is contained in:
@@ -1243,7 +1243,7 @@ case `uname -s` in
|
|||||||
Darwin)
|
Darwin)
|
||||||
function mgrep()
|
function mgrep()
|
||||||
{
|
{
|
||||||
find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' \
|
find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o \( -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -o -regex '(.*/)?soong/[^/]*.go' \) -type f \
|
||||||
-exec grep --color -n "$@" {} +
|
-exec grep --color -n "$@" {} +
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1257,7 +1257,7 @@ case `uname -s` in
|
|||||||
*)
|
*)
|
||||||
function mgrep()
|
function mgrep()
|
||||||
{
|
{
|
||||||
find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -type f \
|
find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o \( -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -o -regextype posix-extended -regex '(.*/)?soong/[^/]*.go' \) -type f \
|
||||||
-exec grep --color -n "$@" {} +
|
-exec grep --color -n "$@" {} +
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user