1
0
Fork 0
mirror of synced 2024-06-01 06:41:12 -04:00
This commit is contained in:
Alex 2016-05-17 12:32:00 +00:00
commit 04502fd66e

View file

@ -48,7 +48,13 @@ fi
export GREP_COLOR='37;45' #BSD export GREP_COLOR='37;45' #BSD
export GREP_COLORS="mt=${GREP_COLOR}" #GNU export GREP_COLORS="mt=${GREP_COLOR}" #GNU
alias grep='grep --color=auto' if [[ $OSTYPE == openbsd* ]]; then
if (( ${+commands[ggrep]} )); then
alias grep='ggrep --color=auto'
fi
else
alias grep='grep --color=auto'
fi
# #