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 | |
# 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" |
OlderNewer