Created
June 26, 2014 18:41
-
-
Save lordgnu/bb0a4d039b5f5fd0e67b to your computer and use it in GitHub Desktop.
Add a User to a Group on OS X
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
# Command Syntax | |
sudo dseditgroup -o edit -a <USERNAME> -t user <GROUP NAME> | |
# To Fix Zend Server Permissions Issues | |
COMMAND="dseditgroup -o edit -a `whoami` -t user zend" | |
sudo $COMMAND |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment