如何始终使用带有颜色的 rgrep

如何始终使用带有颜色的 rgrep

用 grep -n --colour 替换 grep 命令?

rgrep auto color 有类似的东西吗?

答案1

将这一行添加到你的主目录中的 .bashrc 中

alias rgrep="grep -n --colour"

答案2

只需执行以下几行并修改一行如下所述

mkdir -p ~/bin
cd ~/bin
wget http://sdjf.esmartdesign.com/files/rgrep
chmod +x rgrep

编辑并修改行

args=${args:--His}

至此版本:

args="${args:--His} --color=auto"

相关内容