我如何制作一个在adb shell中运行命令的.bat文件

时间:2017-02-27 08:57:19

标签: android shell batch-file adb uiautomator

我想创建一个.bat文件,我可以在其中使用以下命令:

adb shell
uiautomator runtest StandbyCase.jar -c sprd.powertest.Standby &

第二行在这里不起作用。我试过了:

adb shell uiautomator runtest StandbyCase.jar -c sprd.powertest.Standby &

但在这种情况下&不管用。它用于保持进程在backgound中运行。所以,我想运行

adb shell

首先,然后

uiautomator runtest StandbyCase.jar -c sprd.powertest.Standby &

有谁能建议我该怎么做?

1 个答案:

答案 0 :(得分:3)

尝试使用;

adb shell "runtest StandbyCase.jar -c sprd.powertest.Standby &;uiautomator runtest StandbyCase.jar -c sprd.powertest.Standby &"

在正常的批处理文件中。

最多可以使用20行。