〖Android〗查找Android中的/system/lib中增加的lib文件是否在apk文件中
#!/bin/bash - #=============================================================================== # # FILE: fin.sh # # USAGE: ./fin.sh # # DESCRIPTION: # # OPTIONS: --- # REQUIREMENTS: --- # BUGS: --- # NOTES: --- # AUTHOR: linkscue (scue), linkscue@gmail.com # ORGANIZATION: # CREATED: 2013年08月22日 18时45分16秒 HKT # REVISION: --- #=============================================================================== add_lib_lists=/media/Source/cm10.1/device/lenovo/stuttgart/tmp/0807_only_libs.txt find_apk_libs(){ for n in $(ls *.apk);do lib="$1" ret=$(unzip -l $n | grep $lib) if [[ "$ret" != "" ]]; then echo ">>> $lib in the $n" fi done } for n in $(cat $add_lib_lists); do find_apk_libs $n 2> /dev/null done