标签: android adb mksh
我正在尝试监视adb shell中的一些命令,我可以去watch adb shell <command>但是必须连接到shell的额外时间会让我感到害怕。
watch adb shell <command>
Android adb shell是否有自己的watch版本,因此我可以监控某些命令
adb shell
watch
答案 0 :(得分:1)
while true; do <command>; sleep 2; done