如何编写每 N 行仅输出一行的 unix 过滤器

发布于 2024-07-09 17:46:34 字数 220 浏览 5 评论 0原文

假设用以下行提供过滤器标准输入:

line 1 
line 2
line 3
line 4 
line 5
line 6
line 7
line 8
line 9
line 10

如果有人告诉我如何编写一个仅打印每 4 行的脚本,就上面的示例输入而言,那就更好了:

line 1
line 5
line 9

Suppose to feed the filter standard input with these line:

line 1 
line 2
line 3
line 4 
line 5
line 6
line 7
line 8
line 9
line 10

It would be nicer if someone tell me how to write a script that prints only every 4 lines, in the case of the example input above:

line 1
line 5
line 9

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

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

发布评论

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

评论(4

病毒体 2024-07-16 17:46:34
$ yes | cat -n | head -10 | awk 'NR % 4 == 1'
     1  y
     5  y
     9  y

也就是说,您的答案是“awk 'NR % 4 == 1'”。

$ yes | cat -n | head -10 | awk 'NR % 4 == 1'
     1  y
     5  y
     9  y

That is, your answer is "awk 'NR % 4 == 1'".

梦途 2024-07-16 17:46:34
awk '{ if ((NR-1) %4 ==0) print}'
awk '{ if ((NR-1) %4 ==0) print}'
不一样的天空 2024-07-16 17:46:34
awk 'NR%4 == 1 {print}'</etc/hosts

当然,将 4 替换为您想要的任何值。

awk 'NR%4 == 1 {print}'</etc/hosts

Replace 4 by whatever value you want of course.

雪落纷纷 2024-07-16 17:46:34
sed -ne '1~4p’

(GNU sed。未在 OSX 等上测试)

sed -ne '1~4p’

(GNU sed. Not tested on OSX, etc.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文