Last active
January 27, 2018 10:14
-
-
Save bendasvadim/8556e34ba880e78d5c502f5e7a5a3986 to your computer and use it in GitHub Desktop.
Смена прав на файлы и папки одной командой
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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