linux grep过滤命令
grep过滤命令grep单个过滤logcat grep ABCgrep -E多个条件过滤logcat grep -E “A|B|C” file.txt 满足任意条件(A、B和C之一)将匹配。grep A file.txt | grep A |grep B 必须同时满足三个条件(A、B和C)才匹配。反向查找 grep -v单个过滤logcat grep -v ABC反向查找 grep -Ev多个过滤
·
grep过滤命令
-
grep 单个过滤
logcat grep ABC -
grep -E 多个条件过滤
logcat grep -E “A|B|C” file.txt 满足任意条件(A、B和C之一)将匹配。grep A file.txt | grep A |grep B 必须同时满足三个条件(A、B和C)才匹配。
-
反向查找 grep -v 单个过滤
logcat grep -v ABC -
反向查找 grep -Ev 多个过滤
logcat grep -Ev ‘A|B|C’
更多推荐
已为社区贡献1条内容
所有评论(0)