AWK:将脚本输出从脚本重定向到另一个具有动态名称的文件
我知道我可以将 awk 的打印输出从脚本中重定向到另一个文件,如下所示:(
awk '{print $0 >> "anotherfile" }' 2procfile
我知道这是虚拟示例,但这只是一个示例...)
但是我需要的是将输出重定向到另一个文件,该文件有一个像这样的动态名称
awk -v MYVAR"somedinamicdata" '{print $0 >> "MYWAR-SomeStaticText" }' 2procfile
并且输出应该重定向到somedinamicdata-SomeStaticText
。
我知道我可以通过以下方式做到这一点:
awk '{print $0 }' 2procfile >> "$MYVAR-somedinamicdata"
但问题是它是一个更大的 awk 脚本,我必须根据某些条件输出到多个文件(并且这个 awk 脚本是从另一个 bash 调用的,它通过-v 开关...还有
可能吗
?
I know I can redirect awk's print output to another file from within a script, like this:
awk '{print $0 >> "anotherfile" }' 2procfile
(I know that's dummy example, but it's just an example...)
But what I need is to redirect output to another file, which has a dynamic name like this
awk -v MYVAR"somedinamicdata" '{print $0 >> "MYWAR-SomeStaticText" }' 2procfile
And the outpus should be redirected to somedinamicdata-SomeStaticText
.
I know I can do it via:
awk '{print $0 }' 2procfile >> "$MYVAR-somedinamicdata"
But the problem is that it's a bigger awk script, and I have to output to several files depending on certain conditions (and this awk script is called from another bash, and it passes some dynamic variable via the -v switch... and son on.
Is it possible anyhow?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为
应该这样做。 awk中的字符串连接只是一个接一个的连接。
i think
should do it. String concatenation in awk is just put one after another.