Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

linux change all folders to 755 and files to 644

find . -type d -print0 | xargs -0 chmod 755  
find . -type f -print0 | xargs -0 chmod 644
 
PREVIOUS NEXT
Tagged: #linux #change #folders #files
ADD COMMENT
Topic
Name
3+3 =