2021-05-12 14:32:11
grep命令輸出顯示高亮字
grep命令執行後,終端上輸出顯示顏色可以加“--color=auto”的引數。
另外的兩個辦法是:
1.設定環境變數:
export GREP_OPTIONS="--color=auto"
2.修改.bashrc
給grep起別名,用alias設定。我的這個系統其實已經寫有,但是是註釋掉的,
現在把他開啟,看到84行:
84 alias grep='grep --color=auto'
85 #alias fgrep='fgrep --color=auto'
86 #alias egrep='egrep --color=auto'
這樣,在grep執行後的標準輸出就會將匹配的檔案標識為彩色。
[root@mode etc]# grep allowed_host /usr/local/nagios/etc/nrpe.cfg
allowed_hosts= 172.30.71.20
如果你設定完之後沒有效果:請修改下secureCRT設定:
Location:
Options->Global options->General->Default session->Edit Default Settings->Terminal->
Appearance->Font
選項-全域性選項-常規-預設對談-編輯預設設定-模擬(終端設定為Linux並使用顏色方案)-外觀(字型Lucida Console 10pt,字元編碼UTF-8)
設定完以後關閉當前對談,重新開啟即可。
----------------
設定色彩
選項-對談-終端-模擬-ANSI顏色(打勾即可)
grep使用簡明及正規表示式 http://www.linuxidc.com/Linux/2013-08/88534.htm
Linux下Shell程式設計——grep命令的基本運用 http://www.linuxidc.com/Linux/2013-06/85525.htm
grep 命令詳解及相關事例 http://www.linuxidc.com/Linux/2014-07/104041.htm
Linux基礎命令之grep詳解 http://www.linuxidc.com/Linux/2013-07/87919.htm
設定grep高亮顯示匹配項 http://www.linuxidc.com/Linux/2014-09/106871.htm
Linux grep命令學習與總結 http://www.linuxidc.com/Linux/2014-10/108112.htm
本文永久更新連結地址:http://www.linuxidc.com/Linux/2015-03/115298.htm
相關文章