现在的位置: 首页 > 综合 > 正文

adb pull/push 文件夹

2014年01月11日 ⁄ 综合 ⁄ 共 158字 ⁄ 字号 评论关闭

批量从system/apps目录下载a文件到电脑:adb shell ls /system/apps/* | tr "\n\r" " " | xargs -n1 adb pull

注意:如果permission denied,则先执行adb root,再执行adb remount。

将整个目录下的文件上传到手机:adb push . /system/app

抱歉!评论已关闭.