You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
719 B
21 lines
719 B
# color-ls initialization |
|
|
|
COLORS=/etc/DIR_COLORS |
|
[ -e "/etc/DIR_COLORS.$TERM" ] && COLORS="/etc/DIR_COLORS.$TERM" |
|
[ -e "$HOME/.dircolors" ] && COLORS="$HOME/.dircolors" |
|
[ -e "$HOME/.dircolors.$TERM" ] && COLORS="$HOME/.dircolors.$TERM" |
|
[ -e "$HOME/.dir_colors" ] && COLORS="$HOME/.dir_colors" |
|
[ -e "$HOME/.dir_colors.$TERM" ] && COLORS="$HOME/.dir_colors.$TERM" |
|
[ -e "$COLORS" ] || return |
|
|
|
eval `dircolors --sh "$COLORS"` |
|
[ -z "$LS_COLORS" ] && return |
|
|
|
if ! egrep -qi "^COLOR.*none" $COLORS >/dev/null 2>/dev/null ; then |
|
alias ll='ls -l --color=tty' 2>/dev/null |
|
alias l.='ls -d .* --color=tty' 2>/dev/null |
|
alias ls='ls --color=tty' 2>/dev/null |
|
else |
|
alias ll='ls -l' 2>/dev/null |
|
alias l.='ls -d .*' 2>/dev/null |
|
fi
|
|
|