12 lines
307 B
Bash
12 lines
307 B
Bash
![]() |
# Setup for /bin/ls and /bin/grep to support color, the alias is in /etc/bashrc.
|
||
|
if [ -f "/etc/dircolors" ] ; then
|
||
|
eval $(dircolors -b /etc/dircolors)
|
||
|
fi
|
||
|
|
||
|
if [ -f "$HOME/.dircolors" ] ; then
|
||
|
eval $(dircolors -b $HOME/.dircolors)
|
||
|
fi
|
||
|
|
||
|
alias ls='ls --color=auto'
|
||
|
alias grep='grep --color=auto'
|