Unix/Linux命令行小技巧(9)- 为搜索出来的字符串加上颜色

可以使用“--color”选项为grep查找出来的字符串着色:
举个例子:

[root@localhost command]# grep --color [Cat] <<<"nixCraft"

输出为:
nixCraft

也可使用egrep命令:

[root@localhost command]# egrep --color -i 'Mon' ./scan.txt  

输出为:
Nmap 6.46 scan initiated Mon Jan 12 10:58:32 2015 as: nmap -PR -oN scan.txt 192.168.1.0/24
Nmap done at Mon Jan 12 10:58:32 2015 — 256 IP addresses (0 hosts up) scanned in 0.04 seconds

技巧出处:https://twitter.com/nixcraft/status/231473119817261056

 

发表评论

邮箱地址不会被公开。 必填项已用*标注

This site uses Akismet to reduce spam. Learn how your comment data is processed.