文件格式:使用 awk NR 变量造成混乱
我是 awk 编程新手,对 NR 变量的使用有点困惑。
我的代码是...
awk 'BEGIN {k=NR;}{printf("%s %s %s %s\n",$k,$(k+1),$(k+2),$(k+3))}' auth_data
$ cat auth_data
6262 6530 6661 3162 6364 6264 6561 3430 3033 3332 6536 3139 6230 6261 61
30 3637 0A00 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000
输出:
6262 6530 6661 3162 6364 6264 6561 3430 3033 3332 6536 3139 6230 6261 6130
3637 0A00 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 6262 6530 6661
但我想要的是输出应该采用这种格式:
6262 6530 6661 3162 6364 6264 6561 3430
3033 3332 6536 3139 6230 6261 6130 3637
0A00 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
I am new to awk programming and little confused about the use of NR variable ..
My code is ...
awk 'BEGIN {k=NR;}{printf("%s %s %s %s\n",$k,$(k+1),$(k+2),$(k+3))}' auth_data
$ cat auth_data
6262 6530 6661 3162 6364 6264 6561 3430 3033 3332 6536 3139 6230 6261 61
30 3637 0A00 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000
Output :
6262 6530 6661 3162 6364 6264 6561 3430 3033 3332 6536 3139 6230 6261 6130
3637 0A00 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 6262 6530 6661
But what I want is that output should be in this format :
6262 6530 6661 3162 6364 6264 6561 3430
3033 3332 6536 3139 6230 6261 6130 3637
0A00 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你要找的是 NF,而不是 NR。
来自联机帮助页:
NR 是实际行号,但在这个问题中,您想在字段 idx 上做一些技巧,而不是行数。
另外,我认为您的输入数据应该位于文件“auth_data”中的一行,对吧?
如果是这样,您可以尝试
检查下面的测试:
回到问题,如果您只想进行格式化,xargs 就足够了。请参阅下面:
输出:
您可以
cat yourFile|xargs -n8
或xargs -n8 -a yourfile
I guess what you are looking for is NF, not NR.
from Manpage:
NR is actual line number, but in this problem, you want to do some trick on field idx, not lines.
Also, I thought your input data should be in one line in file 'auth_data', right?
if it is so, you could try
check the test below:
And back to the problem, if you just want to do the formatting, xargs is enough. see below:
output:
you can
cat yourFile|xargs -n8
orxargs -n8 -a yourfile