我有一个安装脚本解压缩目录,然后递归chmod其内容.
我很惊讶它需要几乎10倍的时间来解压缩,运行以下两个命令:
find $dir -type f -exec chmod a+r "{}" \; find $dir -type d -exec chmod a+rx "{}" \;
解决方法
您可以使用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