How to move files using adb shell?

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

I did not find any command to move files inside the system partition using the adb shell. Does anyone know how to do this?

+4
source share
1 answer

Does mv not work?

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

Or maybe you need to be root:

 su mv /system/SystemUI.apk /system/app/ 
+8
source

All Articles