Skip to content

chmod

Commands

# find dirs and execute command:
find . -type d -exec chmod 755 {} \;
# find files and execute command:
find . -type f -exec chmod 644 {} \;