正常情況下,我們的cygwin安裝好之後,不管是檔案還是資料夾顯示的顏色都是一樣的,這樣在我們平時的工作中很不方便
所以這裡記錄一下怎麼設定成彩色的,其實很簡單。
直接修改檔案 .bashrc
vim .bashrc
# default to human readable figures
alias df='df -h'
alias du='du -h'
## misc :)
alias less='less -r' # raw control characters
alias whence='type -a' # where, of a sort
alias grep='grep --color' # show differences in colour
alias egrep='egrep --color=auto' # show differences in colour
alias fgrep='fgrep --color=auto' # show differences in colour
## some shortcuts for different directory listings
alias ls='ls -hf --color=tty' # classify files in colour
alias dir='ls --color=auto --format=vertical'
alias vdir='ls --color=auto --format=long'
alias ll='ls -l' # long list
alias la='ls -a' # all but . and ..
alias l='ls -cf' #
直接把 alias ls='ls -hf --color=tty' 前面的#給去掉就行了,我這裡還把其他的別名也給開啟了。
最後執行一下
source .bashrc 就好了
再使用的話就能達到你想要的效果了
Linux執行ls命令後不同檔案型別顯示的顏色一樣
安裝完新的linux系統後,在控制台使用ls命令,顯示不同型別的檔案都是灰色的?解決方法 在root目錄下,找到.bashrc檔案,可以看到其中 export ls options color auto eval dircolors alias ls ls ls options alias ll l...
表示不同檔案型別的魔術數字
這裡所說的表示不同檔案型別的魔術數字,指定是檔案的最開頭的幾個用於唯一區別其它檔案型別的位元組,有了這些魔術數字,我們就可以很方便的區別不同的檔案,這也使得程式設計變得更加容易,因為我減少了我們用於區別乙個檔案的檔案型別所要花費的時間。比如,乙個jpeg檔案,它開頭的一些位元組可能是類似這樣的 ff...
對不同檔案型別應用fencs來繞過utf8編碼問題
我們知道,有時,要用utf8格式,而主要的encoding gbk,又改不得,改了要出問題.那麼,我可以專門針對檔案型別用utf8,但探測時先探測utf8,這樣,vim就不會出問題了.au bufread d set fenc utf8 au bufread d set fileencodings ...