Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试监视我的 adb shell 中的一些命令,我可以去watch adb shell <command>,但是必须连接到 shell 的额外时间让我死了。
watch adb shell <command>
Android是否adb shell有自己的版本,watch所以我可以监控一些命令
adb shell
watch
while true; do <command>; sleep 2; done