📜  chmod 在 bash 中使用 find - Shell-Bash 代码示例

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

代码示例1
find /target-folder -type d -exec chmod 0755 {} \;
find /target-folder -type f -exec chmod 0644 {} \;