aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d/ls.sh
blob: 25fe47770906bc6ffe26ae3295fb86ddb6151314 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Define and store appropriate colors for ls
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