1
0

zsh: aliases and related

This commit is contained in:
2021-12-07 02:46:50 +03:00
parent 95d73f7f64
commit 731471aee7
15 changed files with 66 additions and 35 deletions

View File

@@ -7,8 +7,12 @@ z-alt-grep() {
local n=${#a}
[ -z "$1" ] && n=0
case "$n" in
0) : do nothing ;;
*) z-alt-set-static "grep|-q -e ' ' ${ZSHU[d_zdot]}/.zshenv" "$1" "GREP_OPTIONS='' " ;;
0) ;;
*) z-alt-set-static \
"grep|-q -e ' ' ${ZSHU[d_zdot]}/.zshenv" \
"$1" \
"GREP_OPTIONS='' command" \
;;
esac
}
@@ -16,9 +20,8 @@ z-alt-grep() {
GREP_GNU='--color=auto'
z-alt-grep "grep ${GREP_GNU}|grep"
unfunction z-alt-grep
unset GREP_GNU
egrep() { grep -E "$@" ; }
fgrep() { grep -F "$@" ; }
alias egrep='grep -E '
alias fgrep='grep -F '