在 awk 中设置 FNR 值

发布于 2024-10-14 15:59:27 字数 155 浏览 2 评论 0原文

有什么方法可以改变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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

浅听莫相离 2024-10-21 15:59:28

正确答案是:不要这样做!!!!抛开 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.

<逆流佳人身旁 2024-10-21 15:59:28
$ awk 'FNR > 2 {print $0, FNR}' yourfilename

FNR 不一定与 NR 可以互换。如果指定多个文件,FNR 在每个文件之前重新初始化为零。 NR 没有。

$ awk 'FNR > 2 {print $0, FNR}' yourfilename

FNR isn't necessarily interchangeable with NR. If you specify multiple files, FNR reinitializes to zero before each file. NR doesn't.

撑一把青伞 2024-10-21 15:59:27

是的,通过使用 BEGIN

$ awk 'BEGIN {FNR=2} {print $0, FNR}' file.txt
one 3
two 4
three 5
four 6

但是,当输入不是 stdin 时,这似乎不起作用(即给出了文件参数;至少在 GNU awk 中不是)。

Yes, by using BEGIN:

$ awk 'BEGIN {FNR=2} {print $0, FNR}' file.txt
one 3
two 4
three 5
four 6

However, this seems not to work when input is not stdin (i.e. a file argument is given; at least not in GNU awk).

今天小雨转甜 2024-10-21 15:59:27

为什么不声明自己的 offset 变量:

(piped output....) |  awk 'BEGIN {offset=2} {print $0, FNR+offset}'

Why not declare your own offset variable:

(piped output....) |  awk 'BEGIN {offset=2} {print $0, FNR+offset}'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文