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?
Does mv not work?
mv
mv /system/SystemUI.apk /system/app/
Or maybe you need to be root:
su mv /system/SystemUI.apk /system/app/