摘要: #!/bin/bash#~/bin/apkuninstaller# if you have more than one devices, # use adbs="adb -s $devce_numberno" to specify itadbs=adb#1. get the app list form devicei=0;for list in `$adbs shell ls -1 /data/data/`do apklist[$i]=$list; ((i++));done#2. echo the app list to user selectfor (( i = 0; i 阅读全文
posted @ 2013-01-22 15:08 scue 阅读(331) 评论(0) 推荐(0)