adb shell 一些小命令

1.检测手机中途是否有重启现象
adb shell ps | find "system_server"
adb shell getprop dev.bootcomplete   得到的值为1代表重启完成

2.检测手机的内存情况
 adb shell busybox df -k | find "/data"
 
3.检测手机运行的时间
adb shell uptime

你可能感兴趣的:(adb shell 一些小命令)