📜  linux 将所有文件夹更改为 755,将文件更改为 644 - Shell-Bash 代码示例
📅  最后修改于: 2022-03-11 14:50:49.703000             🧑  作者: Mango
代码示例1
find . -type d -print0 | xargs -0 chmod 755
find . -type f -print0 | xargs -0 chmod 644