欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux grep less字符高亮配置

程序员文章站 2022-04-27 22:24:55
...
引用
打开~/.bash_profile文件并在最下面添加下面代码


GREP_COLOR=32

export GREP_COLOR
export PATH

alias grep='grep --color=always'
alias less='less -r'