xargs 和 ex 命令输入

发布于 2024-10-20 11:01:39 字数 339 浏览 2 评论 0原文

有人可以解释为什么当尝试在多个文件上运行 ex 命令脚本时,这有效:

for x in `ls *`;do ex $x <excmds;done;

但这不起作用:

ls *|xargs -i ex {} <excmds

第一个将执行 ex 并为每个文件运行“excmds”中的命令 第二个,我不确定它的作用,但它不会更改任何文件。 我猜重定向是一个问题,并且不会对 xargs 的每次执行起作用? 有什么方法可以用 xargs 做到这一点吗? (我在 xargs 上提出的另一个问题 - 也许我应该停止使用它:( )

Can someone explain why when attempting to run an ex command script on a number of files, this works:

for x in `ls *`;do ex $x <excmds;done;

but this doesn't:

ls *|xargs -i ex {} <excmds

The first will execute ex and run commands in "excmds" for each file
The second, I'm not sure what it does, but it doesn't change any files.
I'm guessing the re-direct is a problem, and doesn't act on each execution of xargs?
Is there some way to do it with xargs?
(yet another question I've raised on xargs - maybe I should stop using it :( )

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

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

发布评论

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

评论(1

尐籹人 2024-10-27 11:01:39

使用 GNU Parallel:

ls * | parallel ex {} \<excmds

观看介绍视频以了解更多信息:http://www.youtube.com/watch ?v=OpaiGYxkSuQ

10秒安装:

wget pi.dk/3 -qO - | sh -x

Use GNU Parallel:

ls * | parallel ex {} \<excmds

Watch the intro video to learn more: http://www.youtube.com/watch?v=OpaiGYxkSuQ

10 seconds installation:

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