Skip to content

Instantly share code, notes, and snippets.

@naru-jpn
Created August 31, 2021 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naru-jpn/963a370f7f55bc191c724af56a39fa14 to your computer and use it in GitHub Desktop.
Save naru-jpn/963a370f7f55bc191c724af56a39fa14 to your computer and use it in GitHub Desktop.
Display all module names contained in applied appDsyms directory
files=`ls "$1"`
for uuid in ${files[@]}; do
module=`ls "$1/${uuid}/Contents/Resources/DWARF/"`
echo "${uuid:0:8}: ${module}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment