当前位置: 代码迷 >> 综合 >> Android : adb logcat 过滤多个log 用adb shell “ logcat | grep -E ‘strings1| strings2 ‘ “ 形式
  详细解决方案

Android : adb logcat 过滤多个log 用adb shell “ logcat | grep -E ‘strings1| strings2 ‘ “ 形式

热度:37   发布时间:2023-11-27 11:22:55.0

一、有时候想看多个指定字符串的log,可以用下面的形式,注意加-E和单引号:

adb shell " logcat | grep -E  'strings1|strings2 '  " 

二、实际运行效果:

 

  相关解决方案