#!/bin/bash - #===============================================================================##          FILE: ~/bin/apkdump# #         USAGE: apkdump# #   DESCRIPTION: # #       OPTIONS: ---#  REQUIREMENTS: ---#          BUGS: ---#         NOTES: ---#        AUTHOR: linkscue (scue), linkscue@gmail.com#       CREATED: 2013年03月16日 16时52分08秒 HKT#     COPYRIGHT: Copyright (c) 2013, linkscue#      REVISION: 0.1#  ORGANIZATION: ATX风雅组#===============================================================================set -o nounset                              # Treat unset variables as an erroren_label (){    aapt d badging $1 | awk -n -F"'" '/application-label:/ {print $2}' 2>/dev/null}    # ----------  end of function en_label  ----------cn_label (){    aapt d badging $1 | awk -n -F"'" '/application-label-zh_CN/ {print $2}' 2>/dev/null}    # ----------  end of function cn_label  ----------activity (){    aapt d badging $1 | awk -n -F"'" '/launchable-activity/ {print $2}' 2>/dev/null}    # ----------  end of function activity  ----------printf "%-50s %-30s %-30s \n" "[File|文件]" "[English]" "[中文]"for n in $@; do    printf "%-50s %-30s %-30s \n" $n "$(en_label $n)" "$(cn_label $n)"done 2> /dev/null 

更多相关文章

  1. NPM 和webpack 的基础使用
  2. 【阿里云镜像】使用阿里巴巴DNS镜像源——DNS配置教程
  3. android清除缓存并获取大小
  4. Android(安卓)API中文(42)—— ListView
  5. 中文路径导致的报错
  6. 【Android】利用广播Broadcast接收SMS短信
  7. android DialogFragment底部弹出,自定义大小
  8. Android(安卓)studio 文件存储对象与恢复
  9. android 生成Excel文件

随机推荐

  1. Android(安卓)ANR (转)
  2. Android中弹出对话框的实现
  3. Android攻城师需要掌握的技术
  4. 阿里巴巴Android开发手册
  5. Android(安卓)Service——在子线程中更新
  6. 又一年对Android消息机制(Handler&Looper)
  7. Android(安卓)Webview开发基本使用总结(一
  8. Android动画效果 translate、scale、alph
  9. Linux/Android——input_handler之evdev
  10. Android(安卓)最全面的Android(安卓)Stud