Skip to content

Instantly share code, notes, and snippets.

@bendasvadim
Last active January 27, 2018 10:14
Show Gist options
  • Save bendasvadim/8556e34ba880e78d5c502f5e7a5a3986 to your computer and use it in GitHub Desktop.
Save bendasvadim/8556e34ba880e78d5c502f5e7a5a3986 to your computer and use it in GitHub Desktop.
Смена прав на файлы и папки одной командой
sudo find /path/ -type f -exec chmod 644 {} \; && sudo find /path/ -type d -exec chmod 755 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment