Windows bat with adb

时间:2023-03-08 22:49:55
Windows bat with adb
/*********************************************************************
* Windows bat with adb
* 说明:
* 平时工作基本上是在Linux下面,所以很多东西使用shell脚本来做,但
* 有很多时候又必须在Windows下进行,可以考虑使用bat文件,这是一个不错
* 的选择的。
*
* 2016-5-6 深圳 南山平山村 曾剑锋
********************************************************************/ 一、单条shell命令:
adb shell ls / 二、shell脚本:
#!/bin/bash # 显示命令
set -x
# app路径
MOVEPATH="/home/myzr/myandroid/packages/apps/EthernetAutoConf"
# 移动目录
mv $MOVEPATH/src/com $MOVEPATH/
# 重新编译app
./remmm.sh /home/myzr/myandroid/packages/apps/EthernetAutoConf
# 拷贝生成的apk
cp out/target/product/sabresd_6dq/system/app/AEthernet.apk $win 二、bat脚本:
cat install.bat
adb shell ls /
adb uninstall com.zengjf.ethernet
adb install AEthernet.apk
pause