UNIX:递归chmod目录或文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UNIX:递归chmod目录或文件相关的知识,希望对你有一定的参考价值。
// This will recursively search your directory tree (starting at dir 'dot') and chmod 755 all directories only. find . -type d -exec chmod 755 {} ; // Similarly, the following will chmod all files only (and ignore the directories): find . -type f -exec chmod 644 {} ; // Change files of only a specific type/extension (pdf in this case): find ./ -name *.pdf -exec chmod 755 {} ;
以上是关于UNIX:递归chmod目录或文件的主要内容,如果未能解决你的问题,请参考以下文章