batT脚本如何自动执行 adb shell 以后的命令(android抓包)



【batT脚本如何自动执行 adb shell 以后的命令(android抓包)】 bat脚本自动执行 adb shell 以后的命令

@echo off echo su > test.txt echo 其它命令(如 cd /data) >> test.txt adb shell < test.txt del test.txt


例如Android自动抓包
@echo on title android抓包 f: echo su > temp.txt echo cd /data/local >> temp.txt echo ./tcpdump -i wlan0 -p -s 0 -w /sdcard/capture.pcap >> temp.txt adb shell < temp.txt del temp.txt


可参考相关博客http://blog.csdn.net/xiangjai/article/details/26383119

    推荐阅读