android adb 推送文件到指定位置
要推送配置文件到指定的位置,可参考如下流程
adb 以root用户启动
adb root
adb 重新挂载盘符
adb remount
adb推送本地文件到指定位置
adb push .\test-config.json /vendor/test-config.json
adb拉取文件到本地
adb pull /vendor/test-config.json a.json
要推送配置文件到指定的位置,可参考如下流程
adb 以root用户启动
adb root
adb 重新挂载盘符
adb remount
adb推送本地文件到指定位置
adb push .\test-config.json /vendor/test-config.json
adb拉取文件到本地
adb pull /vendor/test-config.json a.json