Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道您可以使用环境变量$GREP_OPTIONS和设置 grep 颜色默认值$GREP_COLOR,但我似乎找不到任何方法来设置默认颜色选项pcregrep...
$GREP_OPTIONS
$GREP_COLOR
pcregrep
我现在有export GREP_OPTIONS='--color=auto'andexport GREP_COLOR='31'在我的 /etc/profile 中,并且希望对pcregrep.
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='31'
tldr:我如何pcregrep默认进行颜色匹配?
我从来没有弄清楚如何做我想要的,但我使用别名得到了相同的最终结果:
alias pcregrep='pcregrep --color=auto'