gpt4 book ai didi

sed - 使用 sed/grep/awk 删除所有内容直到第一个空行

转载 作者:行者123 更新时间:2023-12-04 13:42:24 24 4
gpt4 key购买 nike

谁能帮我弄清楚如何做到这一点,将不胜感激。

例子

block of            //delete
non-important text //delete

important text //keep
more important text //keep

最佳答案

sed '1,/^$/d' file

或者
awk '!$0{f=1;next}f{print}' file

输出
$ sed '1,/^$/d' <<< $'block of\nnon-important text\n\nimportant text\nmore important text'
important text
more important text

$ awk '!$0{f=1;next}f{print}' <<< $'block of\nnon-important text\n\nimportant text\nmore important text'
important text
more important text

关于sed - 使用 sed/grep/awk 删除所有内容直到第一个空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9255258/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com