Skip to content

Instantly share code, notes, and snippets.

@zqqf16
Created June 7, 2018 02:48
Show Gist options
  • Save zqqf16/b0b4f34df92a35c546bec50f6d91f597 to your computer and use it in GitHub Desktop.
Save zqqf16/b0b4f34df92a35c546bec50f6d91f597 to your computer and use it in GitHub Desktop.
Mount iOS app sandbox
#!/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