码迷,mamicode.com
首页 > 移动开发 > 详细

Android手机卸载第三方应用

时间:2018-10-04 09:18:13      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:空间   ges   lis   $2   uninstall   white   shell   echo   pre   

测试机互相拆借,过多的应用占用手机空间,使用脚本将不需要的第三方应用卸载。

#!/bin/sh
#白名单
whiteName=(
    com.tencent.mobileqq 
    com.tencent.mm 
    com.sina.weibo
    com.tencent.mtt
    com.alibaba.android.rimet
    com.eg.android.AlipayGphone
    com.UCMobile
    com.alibaba.android.security.activity
    )
for i in `adb devices|grep -w device|awk ‘{print $1}‘`;do
    adb -s $i shell pm list packages -3|awk -F ‘:‘ ‘{print $2}‘ > ${i}.txt
    #去除多余的\r
    cat $i.txt|tr -d ‘\r‘ > ${i}_1.txt
    for j in `cat ${i}_1.txt`;do
        #判断该值是否在白名单中
        if [[ "${whiteName[@]}" =~ $j ]];then
            echo pass
        else
            echo $j
            adb -s $i uninstall $j
        fi
    done
 done

    

Android手机卸载第三方应用

标签:空间   ges   lis   $2   uninstall   white   shell   echo   pre   

原文地址:https://www.cnblogs.com/csj2018/p/9739400.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!