Linux批量设置新文件和目录的默认权限 2023-05-05 15:29:56 +0800 CST 1 分钟阅读 301 次浏览 文件 find /new-dir -type f -exec chmod 0644 {} \; 目录 find /new-dir -type d -exec chmod 0755 {} \;