是否有从命令行重新启动 Xcode iOS 模拟器的命令?

Is there a command to restart the Xcode iOS simulator from command line?

我找到了杀死所有模拟器的命令,但不符合我的需要。我需要能够重新启动给定 udid 的特定模拟器。

我试过关闭然后使用

启动模拟器
$ xcrun simctl shutdown <udid>
$ xcrun simctl boot <udid>
$ open -a simulator

但模拟器在执行这些命令后挂起。

Xcode版本:10.3 模拟器版本:iPhone XS iOS: 12.4

我正在使用 xcode 11.3,但这似乎对我有用:

export UDID=$(xcrun simctl list devices | grep "(Booted)" | grep -E -o -i "([0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12})")  
xcrun simctl shutdown $UDID
xcrun simctl boot $UDID

可能值得更新到最新的 xcode。