am 1d0608f9: Merge "sepgrep -- function to grep SELinux policy files."

* commit '1d0608f9c5d04ee0cd106e3bd80c41be7444046f':
  sepgrep -- function to grep SELinux policy files.
This commit is contained in:
Jeff Sharkey 2013-05-08 13:26:10 -07:00 committed by Android Git Automerger
commit 998519f1a4
1 changed files with 5 additions and 0 deletions

View File

@ -945,6 +945,11 @@ 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 "$@"
}
function sepgrep()
{
find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d -print0 | xargs -0 grep --color -n -r --exclude-dir=\.git "$@"
}
case `uname -s` in
Darwin)
function mgrep()