选择性打印文件

发布于 2024-12-18 03:21:47 字数 51 浏览 0 评论 0原文

我有一个文件,我必须从中进行选择性打印。我想打印从特定标签到最后的所有内容。我该怎么办?

I have a file from which I have to do selective printing. I want to print everything from a particular tag till the end. How should I go about it?

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

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

发布评论

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

评论(1

森林很绿却致人迷途 2024-12-25 03:21:47

看来你还没有用谷歌搜索过这个。 :)

您可以使用 AWK 和 SED 实用程序来完成此任务。

AWK

awk '/regex/,0' INPUTFILE

这一衬线与正则表达式中具有模式的所有行相匹配。模式二是 0,它始终为 false,因此 awk 将继续打印从匹配模式到文件末尾的行。

SED:

sed -n '/regex/,$p' INPUTFILE

就正则表达式范围而言,这与 awk 类似。这将匹配从模式到文件末尾的所有内容并打印它。

Looks like you havent googled this. :)

You can use AWK and SED Utilities to get this done.

AWK:

awk '/regex/,0' INPUTFILE

This one liner matches all lines with pattern that is in your regex. Pattern two is 0 which will always be false and hence awk will continue printing lines starting from your matched pattern to the end of file.

SED:

sed -n '/regex/,$p' INPUTFILE

This is similar to awk in terms of Regex range. This matches everything from your pattern to the end of file and prints it.

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