多线修剪
我有一个要修剪的 html 文件。我想删除从开头一直到给定字符串的部分,以及从另一个字符串到结尾的部分。我该如何做到这一点,最好使用 sed ?
I have a html file that I want to trim. I want to remove a section from the beginning all the way to a given string, and from another string to the end. How do I do that, preferably using sed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 GNU
sed
:这
变成
With GNU
sed
:this
becomes
你可以使用 awk
you can use awk