Created
November 14, 2014 18:14
-
-
Save ngaloppo/c63f3db5da92d7d6864d to your computer and use it in GitHub Desktop.
Make unix directory group accessible
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
sudo chgrp -R staff /alt | |
chmod +R g+rw /alt | |
umask 002 # allow group write; everyone must do this | |
chmod g+s . # files created in directory will be in group G |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment