|
发表于 2004-2-5 08:50:15
|
显示全部楼层
- # Set up the LS_COLORS and LS_OPTIONS environment variables for color ls:
- if [ "$SHELL" = "/bin/zsh" ]; then
- eval `dircolors -z`
- elif [ "$SHELL" = "/bin/ash" ]; then
- eval `dircolors -s`
- else
- eval `dircolors -b`
- fi
复制代码
把上面的代码加到 .bash_profile |
|