xargs 和 ex 命令输入
有人可以解释为什么当尝试在多个文件上运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 GNU Parallel:
观看介绍视频以了解更多信息:http://www.youtube.com/watch ?v=OpaiGYxkSuQ
10秒安装:
Use GNU Parallel:
Watch the intro video to learn more: http://www.youtube.com/watch?v=OpaiGYxkSuQ
10 seconds installation: