Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
众所周知,我们可以使用以下命令来过滤 Android 中的日志:
adb shell logcat | grep "tag1"
然后,将输出包含 tag1 的日志。
现在,我想使用一个命令来输出包含 tag1 和 tag2 的日志。
我正在尝试使用,但它无法正常工作。
adb shell logcat | grep "tag1 tag2"
怎么做?
这是正确使用 grep 的方法:
adb shell logcat | grep -E "tag1|tag2"
或者你可以只使用 logcat 的内置过滤器:
adb logcat -s tag1:* tag2:*