Rewrite test to multiple ifs

This commit is contained in:
flyingscorpio@arch-desktop 2020-10-07 21:57:14 +02:00
parent 2fca5ccc33
commit cffae31c95

View file

@ -7,7 +7,11 @@ alias git-summary='~/github_misc/git-summary/git-summary'
# color support for ls and grep
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
if [ -r ~/.dircolors ]; then
eval "$(dircolors -b ~/.dircolors)"
else
eval "$(dircolors -b)"
fi
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'