linux 用 grep 查找单个或多个字符串(关键字)时间:2024-03-08 10:15:26 1.单个 cat /tmp/php.log | grep "成功" 所有的成功都会被查询出来。 2.多个,并列查询 cat /tmp/php.log | grep "推荐" | grep "成功" 只筛选出推荐成功的记录。 3.或,查询 cat /tmp/php.log | grep -E "成功|失败" cat /tmp/php.log | egrep "成功|推荐" 成功或者推荐的都查询出来。