linux – 使递归chmod更快

前端之家收集整理的这篇文章主要介绍了linux – 使递归chmod更快前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个安装脚本解压缩目录,然后递归chmod其内容.

我很惊讶它需要几乎10倍的时间来解压缩,运行以下两个命令:

find $dir -type f -exec chmod a+r "{}" \;
find $dir -type d -exec chmod a+rx "{}" \;

我做错了什么,是否有更快的方法来更改所有文件和目录的chmod?

解决方法

您可以使用chmod的X标志去掉find命令:
execute/search only if the file is a directory or already has execute permission for some user (X)

这允许您使用单个命令在文件和目录上设置相同的权限,目录另外可执行:

$chmod -R a+rX $dir
原文链接:https://www.f2er.com/linux/397704.html

猜你在找的Linux相关文章