~2011

Sticky Bits

Always forgetting certain not often used commands. So here's a reminder to set the sticky group bit on a directory so everything created is with same group ownership of the parent directory!

chmod g+s <dir>
#or
chmod 2775 <dir>
#or
find . -type d | xargs chmod 2775
#ls -l will give
drwxr-sr-x