选择性打印文件
我有一个文件,我必须从中进行选择性打印。我想打印从特定标签到最后的所有内容。我该怎么办?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来你还没有用谷歌搜索过这个。 :)
您可以使用 AWK 和 SED 实用程序来完成此任务。
AWK:
这一衬线与正则表达式中具有模式的所有行相匹配。模式二是 0,它始终为 false,因此 awk 将继续打印从匹配模式到文件末尾的行。
SED:
就正则表达式范围而言,这与 awk 类似。这将匹配从模式到文件末尾的所有内容并打印它。
Looks like you havent googled this. :)
You can use AWK and SED Utilities to get this done.
AWK:
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:
This is similar to awk in terms of Regex range. This matches everything from your pattern to the end of file and prints it.