aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d/ls.sh
blob: 7757f3feb5e9e57c6106ee3a6307638138599dfc (plain) (blame)
1
2
3
4
5
6
7
8
if command -v dircolors >/dev/null 2>&1 ; then
    if [ -r "$HOME"/.dircolors ] ; then
        eval "$(dircolors --sh -- "$HOME"/.dircolors)"
    else
        eval "$(dircolors --sh)"
    fi
fi