Created
August 31, 2021 16:46
-
-
Save naru-jpn/963a370f7f55bc191c724af56a39fa14 to your computer and use it in GitHub Desktop.
Display all module names contained in applied appDsyms directory
This file contains hidden or 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
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