6

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?

orglce
  • 513
  • 2
  • 7
  • 19

2 Answers2

11

Does mv not work?

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

Or perhaps you need to be root:

su
mv /system/SystemUI.apk /system/app/
konsolebox
  • 72,135
  • 12
  • 99
  • 105
0

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