Update deepgrep alias to ignore node_modules

main
Buddy Sandidge 6 years ago
parent 9ef9ca3bc0
commit ebac1a3aea

@ -55,7 +55,7 @@ alias can-haz='sudo apt-get install '
alias take='sudo chown $(whoami):$(whoami) ' alias take='sudo chown $(whoami):$(whoami) '
alias simple-http-server='python3 -m http.server' alias simple-http-server='python3 -m http.server'
alias numfiles='find . -maxdepth 1 -type f | wc -l' 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 # 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' 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'

Loading…
Cancel
Save