在 awk 中设置 FNR 值
有什么方法可以改变FNR的默认值,然后将其输出到屏幕上。
我已经尝试过:
(piped output....) | awk '{FNR=0} {print $0, FNR}'
我希望该解决方案可以与 NR 互换。
Is there any way you can alter the default value of FNR and then output it to the screen.
I have tried:
(piped output....) | awk '{FNR=0} {print $0, FNR}'
I am hoping that solution will be interhangeable with NR.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
正确答案是:不要这样做!!!!抛开 FNR 不谈,它就是这样。如果您需要一些计数器来表示除当前文件中到目前为止读取的记录数之外的其他内容,那么只需创建一个计数器来表示它,不要弄乱内置变量的含义。
The correct answer is: DO NOT DO THAT!!!! Leave FNR alone, it is what it is. If you need some counter that represents something other than the number of records read so far in the current file, then simply create a counter to represent that, don't go messing with the meaning of the built-in variables.
FNR 不一定与 NR 可以互换。如果指定多个文件,FNR 在每个文件之前重新初始化为零。 NR 没有。
FNR isn't necessarily interchangeable with NR. If you specify multiple files, FNR reinitializes to zero before each file. NR doesn't.
是的,通过使用
BEGIN
:但是,当输入不是
stdin
时,这似乎不起作用(即给出了文件参数;至少在 GNU awk 中不是)。Yes, by using
BEGIN
:However, this seems not to work when input is not
stdin
(i.e. a file argument is given; at least not in GNU awk).为什么不声明自己的
offset
变量:Why not declare your own
offset
variable: