使用批处理文件在linux shell中运行命令

时间:2012-06-13 09:13:07

标签: android linux shell batch-file

我需要能够在连接到我PC的root手机上运行以下命令:

su
mount -o rw,remount /system
chmod 777 /system/app/
exit
exit

然后我需要在我的电脑上执行以下命令:

adb push ..\bin\MyApp_signed.apk /system/app/

最后,我需要做一些清理并重新启动手机:

su
chmod 755 /system/app/
reboot
exit
exit

如何创建一个Windows批处理文件,以便将这些shell命令传递给android shell?

1 个答案:

答案 0 :(得分:5)

adb shell <command>允许您从计算机上在设备上运行shell命令。如果您的su命令支持-c选项,则可以执行以下操作:

adb shell su -c "mount -o rw,remount /system"
adb shell su -c "chmod 777 /system/app/"

adb push ..\bin\MyApp_signed.apk /system/app/

adb shell su -c "chmod 755 /system/app/"
adb shell su -c reboot

如果您的su命令不支持命令,您可以将脚本留在捆绑设备端的设备上。