Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 adb shell 移动文件?例如,我想将 SystemUI.apk 从 /system 移动到 /system/app
我没有找到任何命令来使用 adb shell 在系统分区内移动文件。有谁知道该怎么做?
不mv工作?
mv
mv /system/SystemUI.apk /system/app/
或者您可能需要成为 root:
su mv /system/SystemUI.apk /system/app/
你可以试试: adb shell mv /system/file_path /sdcard