diff options
author | Alistair Delva <adelva@google.com> | 2021-02-22 13:31:26 -0800 |
---|---|---|
committer | Alistair Delva <adelva@google.com> | 2021-02-22 13:32:07 -0800 |
commit | 176e534edb34a202290feba0ec73edb29f1e0e96 (patch) | |
tree | dc911f037c01507f3737e44d93b7c4498c7d9aaf /envsetup.sh | |
parent | 5af98130b89afb7caa6fc383e6f79116c5b1fc8f (diff) |
Rename rgrep to rsgrep
rgrep is a common alias for 'grep -r' and this new macro was confusing.
Test: cd external/rust/crates
rsgrep test
Change-Id: If71cdcc926455983a04a80982356e9feb61968fe
Diffstat (limited to 'envsetup.sh')
-rw-r--r-- | envsetup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/envsetup.sh b/envsetup.sh index a5f6b6df36..15d6fb4bd9 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -27,7 +27,7 @@ Invoke ". build/envsetup.sh" from your shell to add the following functions to y - mangrep: Greps on all local AndroidManifest.xml files. - mgrep: Greps on all local Makefiles and *.bp files. - owngrep: Greps on all local OWNERS files. -- rgrep: Greps on all local Rust files. +- rsgrep: Greps on all local Rust files. - sepgrep: Greps on all local sepolicy files. - sgrep: Greps on all local source files. - godir: Go to the directory containing a file. @@ -1038,7 +1038,7 @@ function jgrep() -exec grep --color -n "$@" {} + } -function rgrep() +function rsgrep() { find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rs" \ -exec grep --color -n "$@" {} + |