下面是一个简单的脚本,用于安装在 M1 的 macOS 11或更高版本上安装 Rosetta 2。
#!/bin/sh
ver=$(/usr/bin/sw_vers -productVersion)
mainVer=${ver:0:2}
intel=$(/usr/sbin/system_profilersystem_profiler SPHardwareDataType | grep Intel)
if [[ $ver -ge 11 ]]; then
if [ -n "$intel" ]; the