我正在尝试编写一个 Windows 批处理文件,该文件将打开我的 ADB Shell……然后编写一个命令并在 adb shell 中执行,而不是在 Windows 命令提示符下执行。我试图弄清楚在将 adb shell 打开到该提示符而不是命令提示符后如何让批处理编写命令。当我现在尝试它时,它会打开 adb shell,但随后会在命令提示符而不是 adb shell 中写入我尝试执行的命令。
这是我在打开 Windows 命令提示符后手动执行的操作。
cd\
cd adb
adb shell
iperf -s -u -il -p0001 - this line is written in the adb shell prompt $ to open particular port for data
对这个新手的任何帮助将不胜感激。