1. 程式人生 > >Ubuntu:解決ll命令失效和grep關鍵字不高亮(彩色)

Ubuntu:解決ll命令失效和grep關鍵字不高亮(彩色)

1.解決ll命令失效:
在.bashrc檔案中新增:

alias ls='ls --color=auto'

2.解決grep關鍵字不高亮(彩色):
在.bashrc檔案中新增:

alias grep='grep --color=auto'
alias ll='ls -l --color=auto'

解決問題!