Skip to content

Instantly share code, notes, and snippets.

@urouro-net
Last active May 21, 2020 06:50
Show Gist options
  • Save urouro-net/052284d1dbeae5015646b77470a0069f to your computer and use it in GitHub Desktop.
Save urouro-net/052284d1dbeae5015646b77470a0069f to your computer and use it in GitHub Desktop.
プロジェクト配下の UIWebView を使っている .framework を調べる
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