开机的时候推一个文件到系统

系统在开机的瞬间adb devices 是打开的,可以利用这个瞬间的机会推一个文件进去

写一个文件命名test.bat

adb devices
adb wait-for-device
adb root
adb wait-for-device
adb remount
adb push xxx文件名 xxx要推动的路径地址
adb shell sync
pause

你可能感兴趣的:(linux,adb)