find . -type d -print0 | xargs -0 chmod 0775 # For directories find . -type f -print0 | xargs -0 chmod 0664 # For files
Categories: System Tagged: *nix