Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

chmod files 644 directories 755

# . is the path to start the search
find . -type f -exec chmod 644 {} ;
find . -type d -exec chmod 755 {} ;
 
PREVIOUS NEXT
Tagged: #chmod #files #directories
ADD COMMENT
Topic
Name
9+3 =