如何一次使用多个标签过滤Android adb shell logcat?

时间:2013-06-08 03:37:05

标签: android adb logcat

众所周知,我们可以使用该命令过滤Android中的日志:

adb shell logcat | grep "tag1"

然后,将输出包含tag1的日志。

现在,我想使用一个可以输出包含tag1和tag2的日志的命令。

我尝试使用,但它不起作用。

adb shell logcat | grep "tag1 tag2"

怎么做?

1 个答案:

答案 0 :(得分:29)

这是如何正确使用grep:

adb shell logcat | grep -E "tag1|tag2"

或者你可以使用logcat的内置过滤器:

adb logcat -s tag1:* tag2:*