📌  相关文章
📜  分别为文件和文件夹分配权限 ubuntu - Shell-Bash 代码示例

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

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