Chmod files and directories
December 08, 2010
Find this really useful and always forget it.
find -type f -exec chmod 666 '{}' \; # change files
find -type d -exec chmod 777 '{}' \; # change directories
Find this really useful and always forget it.
find -type f -exec chmod 666 '{}' \; # change files
find -type d -exec chmod 777 '{}' \; # change directories