Skip to content

Instantly share code, notes, and snippets.

@cntrump
Last active December 15, 2024 00:22
Show Gist options
  • Save cntrump/136c78aabd3084c9879400079a97f8ed to your computer and use it in GitHub Desktop.
Save cntrump/136c78aabd3084c9879400079a97f8ed to your computer and use it in GitHub Desktop.
Uninstall Rosetta
#!/usr/bin/env sh
for file in `pkgutil --files com.apple.pkg.RosettaUpdateAuto`
do
if [ -f "$file" ]; then
rm -f "$file"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment