UNIX:递归chmod目录或文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UNIX:递归chmod目录或文件相关的知识,希望对你有一定的参考价值。

  1. // This will recursively search your directory tree (starting at dir 'dot') and chmod 755 all directories only.
  2. find . -type d -exec chmod 755 {} ;
  3.  
  4. // Similarly, the following will chmod all files only (and ignore the directories):
  5. find . -type f -exec chmod 644 {} ;
  6.  
  7. // Change files of only a specific type/extension (pdf in this case):
  8. find ./ -name *.pdf -exec chmod 755 {} ;

以上是关于UNIX:递归chmod目录或文件的主要内容,如果未能解决你的问题,请参考以下文章

chmod变更文件或目录的权限

chmod命令

chmod 命令

UNIX:chmod当前目录所有子目录和文件

Linux chmod命令详解

linux命令 cp 递归复制和带权限复制