Last active
May 21, 2020 06:50
-
-
Save urouro-net/052284d1dbeae5015646b77470a0069f to your computer and use it in GitHub Desktop.
プロジェクト配下の UIWebView を使っている .framework を調べる
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BOLD=$(tput bold) | |
NORMAL=$(tput sgr0) | |
FRAMEWORK_DIRS=$(find . -name '*.framework') | |
for framework in $FRAMEWORK_DIRS; do | |
fname=$(basename $framework .framework) | |
echo $BOLD$framework/$fname$NORMAL | |
nm $framework/$fname | grep UIWeb | |
echo "" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment