【Shell】grep命令在結果集中顯示綠色的字元
這是一個可以提高效率的小嚐試
1.看一下我作業系統的版本資訊:
[root@testdb ~]# uname -a
Linux testdb 2.6.18-53.el5xen #1 SMP Wed Oct 10 16:48:44 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux[@more@]
2.要達到命令在結果集中顯示的字元的效果,僅僅需要做如下兩個環境變數的設定即可
export GREP_OPTIONS='--color=always'
export GREP_COLOR='1;32'
3.解釋一下
export GREP_OPTIONS='--color=always'
效果是:grep到的關鍵字以預設的紅顏色來顯示
export GREP_COLOR='1;32'
此設定即表示顏色為綠色(32表示綠色)
4.展示一下效果
[root@testdb ~]# export GREP_OPTIONS='--color=always'
[root@testdb ~]# export GREP_COLOR='1;32'
[root@testdb ~]# ps -ef | grep ora_ | grep -v grep
oracle 11731 1 1 11:17 ? 00:00:00ora_j000_ora10g
oracle 17482 1 0 Jul20 ? 00:00:00ora_q001_ora10g
oracle 31027 1 0 Jul10 ? 00:02:03ora_pmon_ora10g
oracle 31029 1 0 Jul10 ? 00:01:35ora_psp0_ora10g
oracle 31031 1 0 Jul10 ? 00:01:43ora_mman_ora10g
oracle 31033 1 0 Jul10 ? 00:02:09ora_dbw0_ora10g
oracle 31035 1 0 Jul10 ? 00:02:15ora_lgwr_ora10g
oracle 31037 1 0 Jul10 ? 00:02:33ora_ckpt_ora10g
oracle 31039 1 0 Jul10 ? 00:02:31ora_smon_ora10g
oracle 31041 1 0 Jul10 ? 00:01:08ora_reco_ora10g
oracle 31043 1 0 Jul10 ? 00:02:27ora_cjq0_ora10g
oracle 31045 1 0 Jul10 ? 00:02:28ora_mmon_ora10g
oracle 31047 1 0 Jul10 ? 00:02:12ora_mmnl_ora10g
oracle 31429 1 0 Jul10 ? 00:00:57ora_arc0_ora10g
oracle 31431 1 0 Jul10 ? 00:02:11ora_arc1_ora10g
oracle 31435 1 0 Jul10 ? 00:01:47ora_qmnc_ora10g
oracle 31471 1 0 Jul10 ? 00:01:31ora_q000_ora10g
5.如果想要長期有效,可以將這兩個環境變數寫入到使用者的profile中
以我的Linux環境為例,需要新增該內容的檔案是 ~/.bash_profile
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22661144/viewspace-1058081/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【SHELL】grep 命令用法
- Linux基礎命令—顯示文字grepLinux
- linux中顯示有顏色的字元......Linux字元
- shell命令中的萬用字元字元
- grep只顯示匹配部分
- 慢動作輸出 Linux 命令結果並用彩色顯示Linux
- Linux 中grep命令如何匹配中文字元Linux字元
- 分享一個shell指令碼的坑:grep匹配+wc取值 在指令碼執行後的結果與手動執行結果不一致指令碼
- HTML特殊字元顯示HTML字元
- shell 命令提示符中顯示時間(qbit)
- chat-gpt-google-extension: 在谷歌搜尋結果中同時顯示ChatGPT結果的chrome外掛Go谷歌ChatGPTChrome
- shell基礎教程二十一: shell指令碼中echo顯示內容帶顏色指令碼
- ReSharper 顯示使用的顏色
- 『學了就忘』Linux基礎命令 — 31、grep命令和萬用字元Linux字元
- shell前一個命令結果作為下一個命令引數
- Win10系統WampServer執行顯示橙色變成綠色的方法Win10Server
- 淺談色集中異色色對的匹配
- 【Linux命令】grep命令Linux
- shell 三劍客—grep
- SAP Hybris裡搜尋顯示結果的實現原理
- Golang pprof 結果使用 graphviz 圖片化顯示Golang
- Linux shell命令總結Linux
- Linux grep命令的使用Linux
- Linux grep 命令Linux
- 敲擊鍵盤後字元怎麼出現在顯示器字元
- Linux命令篇 - grep 命令Linux
- 分割結果視覺化,把標籤mask輪廓顯示在原圖上視覺化
- Qt中在按鈕上顯示字元'&'QT字元
- redis裡顯示key大小的shell指令碼Redis指令碼
- 如何分頁顯示資料庫查詢結果?資料庫
- shell-----結構化命令
- linux每日命令(35):grep命令Linux
- Linux命令:grep命令AND、OR、NOT例項Linux
- 【Shell】sed xargs grep awk的組合用法
- 生僻字顯示?的字元亂碼解決字元
- git grep命令用法Git
- linux命令之grepLinux
- grep、find命令整理
- Shell命令列中的特殊字元及其轉義(去除特殊含義)命令列字元