find改变权限的问题
来源:3-17 查找文件

黄启年
2020-04-18
这没改到权限啊,是我文件名有问题吗?
写回答
1回答
-
find . -name "file" -exec chmod 600 {} \;
你 600 和 {} 之间没有空格。
你看它有提示错误:
chmod: missing operand after ‘xxx’
112020-04-19
相似问题
find改变权限的问题
来源:3-17 查找文件
黄启年
2020-04-18
这没改到权限啊,是我文件名有问题吗?
1回答
find . -name "file" -exec chmod 600 {} \;
你 600 和 {} 之间没有空格。
你看它有提示错误:
chmod: missing operand after ‘xxx’
相似问题