Last active
December 31, 2021 21:18
-
-
Save davidjpfeiffer/13e946a7bdd5d657366adda623a34d66 to your computer and use it in GitHub Desktop.
This command allows executable files to be executed via command line in MacOS
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
# Since MacOS Monterey executable files created by the user are quarantined by default | |
# Quarantined files will show an "Operation not permitted" message when attempting to execute | |
# To fix this you must disable the quarantine bit for the file using the following command | |
sudo xattr -r -d com.apple.quarantine /path-to-file/file.extension |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment