chmod change files or directories recursively to the same value
Simon | February 11, 2010Recursively change all files in your current working directory including files in subdirectories to 644:
find . -type f -print0 | xargs -0 chmod 644
Recursively change all directories in your current working directory including subdirectories to 755:
find . -type d -print0 | xargs -0 chmod 755






