Assign Permission To Files And Folder Ubuntu Separate

[Solved] Assign Permission To Files And Folder Ubuntu Separate | Perl - Code Explorer | yomemimo.com
Question : give permission to file ubuntu

Answered by : bernat

sudo chmod 777 /path

Source : | Last Update : Wed, 27 Oct 21

Question : assign permission to files and folder ubuntu separate

Answered by : lokesh-ramchandani-in6l3jq294i2

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 : | Last Update : Fri, 24 Sep 21

Answers related to assign permission to files and folder ubuntu separate

Code Explorer Popular Question For Perl