📌  相关文章
📜  授予文件 ubuntu 的权限 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:56.047000             🧑  作者: Mango

代码示例4
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 {} \;