ubuntu Android : adb logcat 过滤多个log
指定字符串的log,可以用下面的形式,注意加-E和单引号:
adb shell " logcat | grep -E 'strings1|strings2 ' "
参考:Android : adb logcat 过滤多个log 用adb shell “ logcat | grep -E ‘strings1| strings2 ‘ “ 形式_adb shell logcat grep-CSDN博客
一、有时候想看多个指定字符串的log,可以用下面的形式,注意加-E和单引号:
adb shell " logcat | grep -E 'strings1|strings2 ' "