adb shell "watch" command to monitor

3k Views Asked by At

I am trying to monitor some commands in my adb shell and I could go watch adb shell <command> but the extra time to have to connect up to the shell is killing me.

Does the Android adb shell have its own version of watch so I can monitor some commands

1

There are 1 best solutions below

0
On BEST ANSWER

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