如何使用 awk 在文件中的模式后打印 5 个连续行

发布于 2024-10-22 03:15:17 字数 316 浏览 1 评论 0原文

我想在文件中搜索模式并在找到该模式后打印 5 行。

我需要使用 awk 才能执行此操作。

示例:

文件内容:

.
.
.
.
####PATTERN#######
#Line1
#Line2
#Line3
#Line4
#Line5
.
.
.

如何解析文件并仅打印上述行? 我是否使用包含“PATTERN”的行的 NR 并保持递增到 5 并打印过程中的每一行。 请让我知道是否有其他有效的方法可以在 Awk 中完成此操作。

I would like to search for a pattern in a file and prints 5 lines after finding that pattern.

I need to use awk in order to do this.

Example:

File Contents:

.
.
.
.
####PATTERN#######
#Line1
#Line2
#Line3
#Line4
#Line5
.
.
.

How do I parse through a file and print only the above mentioned lines?
Do I use the NR of the line which contains "PATTERN" and keep incrementing upto 5 and print each line in the process.
Kindly do let me know if there is any other efficient wat to do it in Awk.

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

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

发布评论

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

评论(7

猫瑾少女 2024-10-29 03:15:17

在 AWK 中执行此操作的另一种方法:

awk '/PATTERN/ {for(i=1; i<=5; i++) {getline; print}}' inputfile

sed 中:

sed -n '/PATTERN/{n;p;n;p;n;p;n;p;n;p}' inputfile

在 GNU sed 中:

sed -n '/PATTERN/,+7p' inputfile

sed -n '1{x;s/.*/####/;x};/PATTERN/{:a;n;p;x;s/.//;ta;q}' inputfile

# 字符代表计数器。使用比要输出的行数少一行的行。

Another way to do it in AWK:

awk '/PATTERN/ {for(i=1; i<=5; i++) {getline; print}}' inputfile

in sed:

sed -n '/PATTERN/{n;p;n;p;n;p;n;p;n;p}' inputfile

in GNU sed:

sed -n '/PATTERN/,+7p' inputfile

or

sed -n '1{x;s/.*/####/;x};/PATTERN/{:a;n;p;x;s/.//;ta;q}' inputfile

The # characters represent a counter. Use one fewer than the number of lines you want to output.

伏妖词 2024-10-29 03:15:17
awk '
{ 
    if (lines > 0) {
        print;
        --lines;
    }
}

/PATTERN/ {
    lines = 5
}

' < input

这产生:

#Line1
#Line2
#Line3
#Line4
#Line5
awk '
{ 
    if (lines > 0) {
        print;
        --lines;
    }
}

/PATTERN/ {
    lines = 5
}

' < input

This yields:

#Line1
#Line2
#Line3
#Line4
#Line5
习惯成性 2024-10-29 03:15:17

如果决定给 grep 一个机会,grep "PATTERN" search-file -A 5 将为您完成这项工作。

编辑:您也可以从 awk 脚本内部使用 system() 函数调用 grep。

grep "PATTERN" search-file -A 5 will do the job for you if decide to give grep a chance.

Edit: You can call grep using system() function from inside your awk script as well.

太阳男子 2024-10-29 03:15:17

awk 来救援!

打印图案行(共 6 行)

$ awk '/^####PATTERN/{c=6} c&&c--' file

####PATTERN#######
#Line1
#Line2
#Line3
#Line4
#Line5

跳过图案并打印接下来的五行

$ awk 'c&&c--; /^####PATTERN/{c=5}' file

#Line1
#Line2
#Line3
#Line4
#Line5

awk to the rescue!

to print with the pattern line (total 6 lines)

$ awk '/^####PATTERN/{c=6} c&&c--' file

####PATTERN#######
#Line1
#Line2
#Line3
#Line4
#Line5

to skip pattern and print the next five lines

$ awk 'c&&c--; /^####PATTERN/{c=5}' file

#Line1
#Line2
#Line3
#Line4
#Line5
罪#恶を代价 2024-10-29 03:15:17

编辑:没有注意到PATTERN不应该是输出的一部分。

cat /etc/passwd | awk '{if(a-->0){print;next}} /qmaild/{a=5}'

或者

cat /etc/passwd | awk ' found && NR-6 < a{print} /qmaild/{a=NR;found=1}'

我能想到的最短的是:

cat /etc/passwd | awk 'a-->0;/qmaild/{a=5}'

读为a趋于0。/qmaild/将a设置为5:-)

Edit: didn't notice PATTERN shouldn't be part of the output.

cat /etc/passwd | awk '{if(a-->0){print;next}} /qmaild/{a=5}'

or

cat /etc/passwd | awk ' found && NR-6 < a{print} /qmaild/{a=NR;found=1}'

The shortest I can come up with is:

cat /etc/passwd | awk 'a-->0;/qmaild/{a=5}'

Read as a tends to 0. /qmaild/ sets a to 5 :-)

呢古 2024-10-29 03:15:17

快速而肮脏的解决方案:awk '/PATTERN/ {i=0} { if (i<=5) {print $0}; i+=1} 开始 {i=6}'

Quick&dirty solution: awk '/PATTERN/ {i=0} { if (i<=5) {print $0}; i+=1} BEGIN {i=6}'

拥抱没勇气 2024-10-29 03:15:17

与 Johnsyweb 的解决方案一样有限,但使用不同的方法和 GNU awk 的高级功能,允许完整的 RegEx 记录分隔符,从而产生一段代码,恕我直言,非常 awk - ish:

awk -F\\\n '{NF=5}NR-1' RS="PATTERN[^\n]*." OFS=\\\n

因此,如果您想要一个稳定且可读的解决方案,请遵循 Dennis Williamson 的答案(+1),但也许您在查看这样的行时也只是享受 awk 的美丽。

As limited as Johnsyweb's solution but using a different approach and GNU awk's advanced feature allowing full RegEx record separators resulting in a piece of code that, IMHO, is very awk-ish:

awk -F\\\n '{NF=5}NR-1' RS="PATTERN[^\n]*." OFS=\\\n

So if you want a stable solution that is also readable, go along with Dennis Williamson's answer (+1 for that one) but maybe you too simply enjoy the beauty of awk when looking at lines like this.

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