查找-exec选项

发布于 2024-10-31 17:34:18 字数 337 浏览 2 评论 0原文

比如说,我想找到一些文件并执行 chmod 并使用另一个命令对其执行某些操作,例如

find . -name "*.txt" -exec chmod 666 "{}" && cp "{}" /dst \;

它说

find: missing argument to `-exec'

如何正确使用此 -exec 构造?我认为问题在于“&&” ?我需要使用这个 && 运算符,以防 chmod 失败 谢谢

Say , i want to find some files and do chmod and do something with it with another command, eg

find . -name "*.txt" -exec chmod 666 "{}" && cp "{}" /dst \;

it says

find: missing argument to `-exec'

How do I properly use this -exec construct? I think the problem is with the "&&" ? I need to use this && operator in case chmod fails
thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

も让我眼熟你 2024-11-07 17:34:18

只需使用另一个 -exec 例如

find . -name \*.txt -exec chmod 666 {} \; -exec cp {} /dst/ \;

Just use another -exec e.g.

find . -name \*.txt -exec chmod 666 {} \; -exec cp {} /dst/ \;
似梦非梦 2024-11-07 17:34:18

要么编写一个小 shell 脚本并执行该脚本,要么使用多个执行脚本。

Either write a little shell script and -exec that or use multiple -exec's.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文