Skip to content

Instantly share code, notes, and snippets.

@Semdevmaster
Created February 1, 2022 15:46
Show Gist options
  • Select an option

  • Save Semdevmaster/09eb89f677d1d45e6f2e28fc4ae32166 to your computer and use it in GitHub Desktop.

Select an option

Save Semdevmaster/09eb89f677d1d45e6f2e28fc4ae32166 to your computer and use it in GitHub Desktop.
Рекурсивное изменение прав на директории и файлы в Linux
find /home/site.ru/public_html -type d -exec chmod 755 {} \;
find /home/site.ru/public_html -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment