0

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

Alex P.
  • 30,437
  • 17
  • 118
  • 169
FrickeFresh
  • 1,688
  • 1
  • 19
  • 31

1 Answers1

2

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

FrickeFresh
  • 1,688
  • 1
  • 19
  • 31