adb shell "watch" 命令监控

adb shell "watch" command to monitor

我正在尝试监控我的 adb shell 中的一些命令,我​​可以去 watch adb shell <command> 但是必须连接到 shell 的额外时间让我很痛苦。

Android adb shell 是否有自己的 watch 版本以便我可以监视一些命令

while true; do <command>; sleep 2; done