bash、查找、执行和回显

发布于 2024-10-08 06:32:16 字数 566 浏览 4 评论 0原文

find . \
  -name 'user_prefs' \
  -exec echo "whitelist_from [email protected]" >> {} \;'

我想添加行 whitelist_from [email protected]< /code> 到 find 找到的所有文件,但我的命令不起作用。 它只是创建文件“{}”。

我应该使用 for 命令吗?

谢谢!

find . \
  -name 'user_prefs' \
  -exec echo "whitelist_from [email protected]" >> {} \;'

I would like to add the line whitelist_from [email protected] to all files that are found by find, but my command does not work.
It just creates the file '{}'.

Shoud i use the for command?

thanks!

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

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

发布评论

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

评论(2

ゞ花落谁相伴 2024-10-15 06:32:16

你必须转义“>>”,例如这样:

find . -name 'user_prefs' -exec sh -c 'echo "whitelist_from [email protected]" >> {}' \;

You have to escape the '>>', for example like this:

find . -name 'user_prefs' -exec sh -c 'echo "whitelist_from [email protected]" >> {}' \;
゛清羽墨安 2024-10-15 06:32:16

如前所述,鼓励使用 xargs,但您也可以通过以下方式避免多次执行 sh:

find . -name 'user_prefs' | while read filename; do echo "whitelist_from [email protected]" >>"$filename"; done

As said already, using xargs is encouraged, but you can also avoid executing sh many times by:

find . -name 'user_prefs' | while read filename; do echo "whitelist_from [email protected]" >>"$filename"; done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文