How to move files with adb shell?

ぃ、小莉子 提交于 2019-12-07 08:08:48

问题


How can I move files with adb shell ? For example I would like to move SystemUI.apk from /system to /system/app

I didn't find any command to move files inside system partition with adb shell. Do anyone know how to do this?


回答1:


Does mv not work?

mv /system/SystemUI.apk /system/app/

Or perhaps you need to be root:

su
mv /system/SystemUI.apk /system/app/



回答2:


you can try: adb shell mv /system/file_path /sdcard



来源:https://stackoverflow.com/questions/18935109/how-to-move-files-with-adb-shell

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!