grep 命令
使用grep命令进行多个条件查询:
[[email protected]2 tmp]# cat a.txt error error error error error ERROR ERROR ERROR ERROR ERROR ERROR ERROR [[email protected]-2 tmp]# cat a.txt | grep -E "error|ERROR" error error error error error ERROR ERROR ERROR ERROR ERROR ERROR ERROR [[email protected]-2 tmp]#
时间: 2024-10-13 12:33:08