From Electron Cloud
To change every directory to have ug+rwx and sticky:
find . -type d -print0 | xargs -0 chmod 1770
-print0 and -0 are to deal with spaces in the filenames.
To change every directory to have ug+rwx and sticky:
find . -type d -print0 | xargs -0 chmod 1770
-print0 and -0 are to deal with spaces in the filenames.