awk 输出中缺少标头

发布于 2024-12-26 04:21:31 字数 275 浏览 1 评论 0原文

输入:

position fst
1 0.6
2 0.8
3 0.9
4 0.3
5 1

这给了我一个标题:

awk '{if ($2>=0.7) print $1}' input > output

但这没有:

awk '{if ($2<0.7) print $1}' input > output

怎么来?

input:

position fst
1 0.6
2 0.8
3 0.9
4 0.3
5 1

This gives me a header:

awk '{if ($2>=0.7) print $1}' input > output

but this doesn't:

awk '{if ($2<0.7) print $1}' input > output

How come?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

﹏半生如梦愿梦如真 2025-01-02 04:21:31

在第二个示例中, $2<0.7 被解释为 "fst"<"0.7" ,即 FALSE

您可以添加 NR==1 || 始终打印第一行:

$ awk 'NR==1 || $2<0.7{print $1}' input
position
1
4

In your second example, $2<0.7 is interpreted as "fst"<"0.7" which is FALSE

You can add NR==1 || to always print first line:

$ awk 'NR==1 || $2<0.7{print $1}' input
position
1
4
像极了他 2025-01-02 04:21:31

如果您总是想打印标题,请使用:

awk '{if (NR>1) {if ($2>=0.7) print $1} else print $1}'
awk '{if (NR>1) {if ($2<0.7) print $1} else print $1}'

If you always want to print the header then use:

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