标签:tmp 多个 失败 lin 筛选 php pre grep -E linu
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 "成功|推荐"
成功或者推荐的都查询出来。
标签:tmp 多个 失败 lin 筛选 php pre grep -E linu
原文地址:https://www.cnblogs.com/jiqing9006/p/10009027.html