]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blame - pkgs/core/coreutils/profile.d/dircolors.sh
naoki: Initial checkin.
[people/amarx/ipfire-3.x.git] / pkgs / core / coreutils / profile.d / dircolors.sh
CommitLineData
71e32384
MT
1# Setup for /bin/ls to support color, the alias is in /etc/bashrc.
2if [ -f "/etc/dircolors" ] ; then
3 eval $(dircolors -b /etc/dircolors)
4
5 if [ -f "$HOME/.dircolors" ] ; then
6 eval $(dircolors -b $HOME/.dircolors)
7 fi
8fi
9alias ls='ls --color=auto'