0
我嘗試通過編輯.dircolors文件更改ls命令的目錄列表的顏色/屬性,但它不起作用。更改我的目錄中列出的目錄的顏色
在此之前,值得一提的是,我在bash.bashrc文件中添加了以下更改。
# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ]; then
[ -e "$HOME/.dircolors" ] && DIR_COLORS="$HOME/.dircolors"
[ -e "$DIR_COLORS" ] || DIR_COLORS=""
eval "`dircolors -b $DIR_COLORS`"
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
fi
另外,在bashrc中添加了下面的代碼來指定dircolors文件路徑。
d=.dircolors
test -r $d && eval "$(dircolors $d)"
剛剛開始使用ubuntu的時候,我對這些東西有了一個模糊的想法。 那麼有人可以幫我找出爲什麼我無法改變LS命令的顏色的原因嗎?