Fix for OpenBSD ls alias https://github.com/Eriner/zim/issues/47
This commit is contained in:
parent
fcc4c573a8
commit
48ea39523e
1 changed files with 9 additions and 2 deletions
|
@ -31,8 +31,15 @@ else
|
|||
export LSCOLORS='exfxcxdxbxGxDxabagacad'
|
||||
export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=36;01:cd=33;01:su=31;40;07:sg=36;40;07:tw=32;40;07:ow=33;40;07:'
|
||||
|
||||
# stock OpenBSD ls does not support colors at all, but colorls does.
|
||||
if [[ $OSTYPE == openbsd* ]]; then
|
||||
if (( ${+commands[colorls]} )); then
|
||||
alias ls='colorls -G'
|
||||
fi
|
||||
else
|
||||
alias ls='ls -G'
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue