执行awk输出
while read line;
do
awk '/ differ$/ {print "diff "$2" "$4" > "$2".diff"}{}';
done < diffs.txt
这将完全按照我想要的方式打印命令。我如何告诉它执行命令?
while read line;
do
awk '/ differ$/ {print "diff "$2" "$4" > "$2".diff"}{}';
done < diffs.txt
This prints the command exactly as I want it. How do I tell it to execute the command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
<代码>| bash 可以解决问题...
| bash
does the trick...您可以使用“system”命令来执行此类任务。
You can use the "system" command for these kinds of tasks.
对于这个问题,接受的答案(@micheal)仅部分正确。它适用于几乎所有情况,但命令需要创建新终端或伪终端时除外。就像“ssh”命令或“tmux new”一样。
以下代码也适用于这些情况。
$() 是 bash 命令替换模式。您可以在此处阅读有关 Linux 文档项目中的命令替换的更多信息:http://www. tldp.org/LDP/abs/html/commandsub.html。
The accepted answer (by @micheal) for this question is only partially correct. It works for almost all cases, except when the command requires creation of a new terminal or pseudo terminal. Like 'ssh' commands, or 'tmux new'..
Following code works for those cases also.
$() is the bash command substitution pattern. You can read more about command substitution in Linux Documentation Project here : http://www.tldp.org/LDP/abs/html/commandsub.html.