Last active
December 15, 2024 00:22
-
-
Save cntrump/136c78aabd3084c9879400079a97f8ed to your computer and use it in GitHub Desktop.
Uninstall Rosetta
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
#!/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