标签:
grep 命令
使用grep命令进行多个条件查询:
[root@TX-2 tmp]# cat a.txt error error error error error ERROR ERROR ERROR ERROR ERROR ERROR ERROR [root@TX-2 tmp]# cat a.txt | grep -E "error|ERROR" error error error error error ERROR ERROR ERROR ERROR ERROR ERROR ERROR [root@TX-2 tmp]#
标签:
原文地址:http://www.cnblogs.com/tangshengwei/p/5026403.html