11

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

adb shell logcat | grep "tag1"

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

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

我正在尝试使用,但它无法正常工作。

adb shell logcat | grep "tag1 tag2"

怎么做?

4

1 回答 1

39

这是正确使用 grep 的方法:

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

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

adb logcat -s tag1:* tag2:*
于 2013-06-08T03:58:30.363 回答