From ebac1a3aeac810c5360d7b74ba0cb7dfac3ec6fa Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Tue, 9 Apr 2019 10:56:26 -0700 Subject: [PATCH] Update deepgrep alias to ignore node_modules --- bash/aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/aliases b/bash/aliases index 6ad80ab..0aa3826 100644 --- a/bash/aliases +++ b/bash/aliases @@ -55,7 +55,7 @@ alias can-haz='sudo apt-get install ' alias take='sudo chown $(whoami):$(whoami) ' alias simple-http-server='python3 -m http.server' alias numfiles='find . -maxdepth 1 -type f | wc -l' -alias deepgrep='find . -type f -not -name "*.swp" -not -name "*.pyc" | sed "s/$/\"/g" | sed "s/^/\"/g" | xargs grep --color ' +alias deepgrep='find . -type d -name "node_modules" -prune -o -type f -not -name "*.swp" -not -name "*.pyc" | sed "s/$/\"/g" | sed "s/^/\"/g" | xargs grep --color ' # Show list of git branches alias git-br='for k in `git branch|perl -pe s/^..//`; do echo -e ` git show --pretty=format:"%Cgreen%ci %Cblue%cr%Creset" $k|head -n 1`\\t$k;done|sort -r'