Rewrite test to multiple ifs
This commit is contained in:
parent
2fca5ccc33
commit
cffae31c95
1 changed files with 5 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue