输出一条adb shell 指令完成l手机ogcat 抓30s log,30s后退出logcat。
时间: 2024-04-08 21:31:17 浏览: 98
Android shell命令行中过滤adb logcat输出的几种方法
您可以使用以下的adb shell指令来完成您的需求:
```
adb shell logcat -v time -d > /sdcard/log.txt && sleep 30 && adb shell logcat -c
```
这条指令的作用是:
1. 将logcat日志输出到/sdcard/log.txt文件中(-v time参数用于包含时间戳);
2. 延时30秒(sleep 30);
3. 清除logcat缓存(adb shell logcat -c),以停止logcat的输出。
这样,您可以在/sdcard/log.txt文件中找到30秒的log信息。
阅读全文