Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 50b61e9e authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Function to grep AndroidManifest.xml files.

Change-Id: I1998a9d6a05176fc7fc8643c5d1c40e2dd699d4e
parent 099ad657
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -935,6 +935,11 @@ function resgrep()
    for dir in `find . -name .repo -prune -o -name .git -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@"; done;
}

function mangrep()
{
    find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
}

case `uname -s` in
    Darwin)
        function mgrep()