Created
June 7, 2018 02:48
-
-
Save zqqf16/b0b4f34df92a35c546bec50f6d91f597 to your computer and use it in GitHub Desktop.
Mount iOS app sandbox
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 | |
TARGET="/Volumes/sandbox.app" | |
APP_ID="app.bundle.id" | |
if [ -d $TARGET ]; then | |
sudo umount $TARGET | |
fi | |
sudo mkdir $TARGET | |
sudo ifuse --container $APP_ID $TARGET -o allow_other | |
open $TARGET |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment