1、命令
find . -type f -exec chmod +x {} \;
解释:
-
.
表示当前文件夹。 -
-type f
表示只查找文件,不包括目录。 -
-exec
后面跟的是对查找到的每个文件要执行的命令,这里是chmod +x
添加执行权限。 -
{}
是一个占位符,代表找到的文件名。 -
\;
表示-exec参数的结束。
如果你想要移除所有文件的可执行权限,可以使用以下命令:
find . -type f -exec chmod -x {} \;
标签:执行,exec,麒麟,chmod,文件夹,linux,权限,type From: https://www.cnblogs.com/handsomeziff/p/18363408