尝试使用adb查看命令从Windows运行批处理文件到已连接的android设备。
这只是闪烁:
C:\> adb.exe shell "watch -n10 dumpsys notification | grep ticker"
C:\> adb.exe shell watch -n10 dumpsys notification | grep ticker
如果我不添加手表,这将起作用:
C:\> adb.exe shell dumpsys notification | grep ticker
C:\> adb.exe shell "dumpsys notification | grep ticker"
如果我首先使用adb shell,这将起作用:
C:\> adb shell
$ watch -n10 'dumpsys notification | grep ticker'
但是,使用adb的命令有效,但当我在其之前添加watch语法时,则不起作用。我们是否可以调用watch -nX dumpsys
通知并在cmd窗口中正确刷新它?