Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

ubuntu change permissions on folder and subfolders

# To change all the directories to 755 (drwxr-xr-x):
find /opt/lampp/htdocs -type d -exec chmod 755 {} ;

# To change all the files to 644 (-rw-r--r--):
find /opt/lampp/htdocs -type f -exec chmod 644 {} ;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #ubuntu #change #permissions #folder #subfolders
ADD COMMENT
Topic
Name
3+2 =