Created
July 19, 2017 19:13
-
-
Save robinkunde/eaaa85a2e34cedfb1e6e7ee936414142 to your computer and use it in GitHub Desktop.
openSimFolderForBundleID
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 | |
BUNDLE_PATH=`xcrun simctl get_app_container booted $1` | |
if [[ $? -ne 0 ]]; then | |
exit 1 | |
fi | |
for f in $BUNDLE_PATH/*; do | |
open -R "$f" | |
exit; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment