Chmod
chmod 755 filenameРекурсивный chmod только для каталогов
$ chmod -R 755 ./
$ find ./ -type f -print | xargs chmod 644Last updated
chmod 755 filename$ chmod -R 755 ./
$ find ./ -type f -print | xargs chmod 644Last updated
find ./ -type f -exec chmod 644 "{}" \;