2022-11-29 17:16:28 +00:00
|
|
|
#!/bin/bash
|
2023-05-29 19:24:57 +00:00
|
|
|
RUNTIME=$(xcrun simctl runtime list -j | jq '.[].runtimeIdentifier' -r | head -1)
|
|
|
|
ID=$(xcrun simctl create test-iphone com.apple.CoreSimulator.SimDeviceType.iPhone-14-Pro $RUNTIME 2>/dev/null)
|
2022-11-29 17:16:28 +00:00
|
|
|
xcrun simctl boot $ID
|
|
|
|
xcrun simctl bootstatus $ID
|
|
|
|
echo Simulator ID is $ID
|
|
|
|
( trap exit SIGINT ; read -r -d '' _ </dev/tty ) ## wait for Ctrl-C
|
|
|
|
xcrun simctl delete $ID
|
|
|
|
|
|
|
|
|