仅递归更改文件/文件夹的文件权限[*nix]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了仅递归更改文件/文件夹的文件权限[*nix]相关的知识,希望对你有一定的参考价值。

Problem

You want to recursively change all of the file permissions only on folders & subfolders in a directory, but not the files (or vice-versa: you want to change the permissions on files only, not folders).
  1. # This command will recursively search your current directory and chmod all directories & sub-directories only:
  2. find . -type d -exec chmod 755 {} ;
  3.  
  4. # The following command will chmod all files only (ignoring the directories):
  5. find . -type f -exec chmod 644 {} ;

以上是关于仅递归更改文件/文件夹的文件权限[*nix]的主要内容,如果未能解决你的问题,请参考以下文章

sh [sh - 递归搜索]递归移动文件#macOS #nix #Bash

Bash 脚本:递归更改文件权限

在mac中使用shell命令递归更改文件和文件夹的权限

sh 递归更改文件夹的访问权限

按文件和目录递归更改权限

如何递归地将目录复制到另一个目录并仅替换未更改的文件?