summaryrefslogtreecommitdiffstats
path: root/aaabasicfs/dircolors.sh
blob: 873d91b9b452d74c425ab62aee5c9a9189aa6d19 (plain)
1
2
3
4
5
6
7
8
9
# Setup for /bin/ls to support color, the alias is in /etc/bashrc.
if [ -f "/etc/dircolors" ] ; then
        eval $(dircolors -b /etc/dircolors)

        if [ -f "$HOME/.dircolors" ] ; then
                eval $(dircolors -b $HOME/.dircolors)
        fi
fi
alias ls='ls --color=auto'