Skip to content

Instantly share code, notes, and snippets.

View MonksterFX's full-sized avatar
🎯
Focusing

Max Mönch MonksterFX

🎯
Focusing
View GitHub Profile
@MonksterFX
MonksterFX / obsd.sh
Created June 8, 2023 12:37
open booted simulator directory
#!/bin/bash
# id of expo go app / change if you use dev-client
APP_NAME="host.exp.Exponent"
# get data folder from app container
FILE_LOCATION=$(xcrun simctl get_app_container booted "$APP_NAME" data)
# open path in finder
open "$FILE_LOCATION"