Last active
June 19, 2019 14:56
-
-
Save mehdico/4353f4bb65124b1ba245e84f565e0cfd to your computer and use it in GitHub Desktop.
Fix mac os apps launch error
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
#!/bin/bash | |
for filename in /Applications/*.app; do | |
echo "$filename"; | |
eval xattr -cr "$filename"; | |
done | |
echo "\nCOMPLETED!"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment