九、BAT脚本如何自动执行 adb shell 以后的命令

笠航 / 2023-08-02 / 原文

@echo off
echo su > temp.txt
echo 其它命令 >> temp.txt
adb shell < temp.txt
del temp.txt

求问 BAT脚本如何自动执行 adb shell 以后的命令_百度知道
http://zhidao.baidu.com/question/496847483.html

把adb命令写在temp.txt里面。然后一次性执行