在文件中搜索字符串并输出行号

发布于 2024-11-10 09:12:50 字数 122 浏览 2 评论 0原文

awk '$0 ~ str{print b}{b=$0}' str="findme" path_to_file

这样我就可以得到找到的字符串行之前的行。
如何打印其行号?

awk '$0 ~ str{print b}{b=$0}' str="findme" path_to_file

with this I can get the line before the found string's line.
How can I print its line number?

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

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

发布评论

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

评论(4

岁月静好 2024-11-17 09:12:50

使用NR获取当前行(记录)号:

awk '$0 ~ str{print NR-1 FS b}{b=$0}' str="findme" path_to_file

Use NR to get the current line (record) number:

awk '$0 ~ str{print NR-1 FS b}{b=$0}' str="findme" path_to_file
沒落の蓅哖 2024-11-17 09:12:50

如果我正确解释了问题,并且您只想打印包含给定字符串的任何行之前的行的行号,您可以执行以下操作:

$ awk '/findme/{print NR - 1}' /path/to/file

If I interpret the question correctly, and you simply want to print the line number of the line that precedes any line containing a given string, you can do:

$ awk '/findme/{print NR - 1}' /path/to/file
各自安好 2024-11-17 09:12:50

这是一个解决方案:

awk '$0 ~ str{print b;print}{b=$0}' str="findme" path_to_file

或者,如果您不介意输出略有不同,其中有“--”分隔找到的行组:

grep -B1 findme path_to_file

在这种情况下,您在文件“path_to_file”中搜索字符串“findme” 。 -B1 标志表示“在此之前还打印 1 行”。

Here is a solution:

awk '$0 ~ str{print b;print}{b=$0}' str="findme" path_to_file

Or, if you don't mind a slightly different output, in which there are '--' separating groups of found lines:

grep -B1 findme path_to_file

In this case, you search for the string "findme" within the file 'path_to_file'. The -B1 flag says, "also prints 1 line before that."

缪败 2024-11-17 09:12:50

您可以使用 echo $(awk '$0 ~ str{print b}{b=$0}' str="findme" path_to_file)

you can use echo $(awk '$0 ~ str{print b}{b=$0}' str="findme" path_to_file)

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