how to set permissions of all the folders and all the files in as few steps as possible CHMOD
I was wondering if there was a way 开发者_运维技巧to do it quickly!!
Any help would be really appreciated!
find somedir/ \( -type d -exec chmod 0775 {} + -true \) -o \( -exec chmod 0644 {} + \)
精彩评论