2021-03-21 18:25:10 +03:00
|
|
|
#!/bin/zsh
|
|
|
|
|
|
|
|
z-alt-grep() {
|
|
|
|
local -a a
|
|
|
|
a=( ${(@s:|:)1} )
|
|
|
|
[ ${#a} = 0 ] && a=( "$1" )
|
|
|
|
local n=${#a}
|
|
|
|
[ -z "$1" ] && n=0
|
|
|
|
case "$n" in
|
2021-12-07 02:46:50 +03:00
|
|
|
0) ;;
|
|
|
|
*) z-alt-set-static \
|
|
|
|
"grep|-q -e ' ' ${ZSHU[d_zdot]}/.zshenv" \
|
|
|
|
"$1" \
|
|
|
|
"GREP_OPTIONS='' command" \
|
|
|
|
;;
|
2021-03-21 18:25:10 +03:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
## TODO: add --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox}
|
|
|
|
GREP_GNU='--color=auto'
|
|
|
|
|
|
|
|
z-alt-grep "grep ${GREP_GNU}|grep"
|
|
|
|
unfunction z-alt-grep
|
|
|
|
unset GREP_GNU
|
|
|
|
|
2021-12-07 02:46:50 +03:00
|
|
|
alias egrep='grep -E '
|
|
|
|
alias fgrep='grep -F '
|