我想运行这个文件看看
“1 代表 example_x 2 代表 example_y 3 代表 example_z
输入要安装的 apk 编号:"
然后我按 1、2 或 3 并回车,脚本通过 adb(Android 调试桥)安装相应的 .apk。
当我现在运行它时,我收到消息“找不到要安装的 '1'”。
@echo off
set newline=^& echo.
set 1=example_x.apk
set 2=example_y.apk
set 3=example_z.apk
echo 1 for example_x %newline% 2 for example_y% 3 for example_z %newline%
set /p UserInput= Enter number for apk to install:
adb install %UserInput%
pause
exit