Last active
August 27, 2019 05:28
-
-
Save baquaz/7db95cd7ae298f18d78e0d369f9fa41d to your computer and use it in GitHub Desktop.
Looking into provisioniong profile (.mobileprovision)
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
| #!/bin/bash | |
| # Usage: provide 2 parameters(provisioning profile path and new filename) | |
| # | |
| # sh ./provisioning2xml.sh path xml_name | |
| path=$1 | |
| name=$2 | |
| echo "Generating $name.xml from path: $path" | |
| security cms -D -i "$path" >> ./"$name".xml | |
| echo "Finished" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment