使用 sed 删除两个模式之间的行(不包含)

发布于 2024-10-18 14:35:12 字数 227 浏览 1 评论 0原文

好吧,

我知道这是一个微不足道的问题,但是:我如何从两个已知模式/单词之间的文件中删除行:

模式1
垃圾
模式2

获得:

模式1
模式2

有谁知道学习 sed 的好(简单的写法!)资源吗?有很多清晰的例子吗?

Ok

I know that this is trivial question but: How can i remove lines from files that are between two known patterns/words:

pattern1
garbage
pattern2

to obtain:

pattern1
pattern2

And does anyone known good(simple written!) resources for studying sed?? With many clear examples?

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

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

发布评论

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

评论(6

你げ笑在眉眼 2024-10-25 14:35:12
sed -n '/pattern1/{p; :a; N; /pattern2/!ba; s/.*\n//}; p' inputfile

解释:

/pattern1/{         # if pattern1 is found
    p               # print it
    :a              # loop
        N           # and accumulate lines
    /pattern2/!ba   # until pattern2 is found
    s/.*\n//        # delete the part before pattern2
}
p                   # print the line (it's either pattern2 or it's outside the block)

编辑:

某些版本的sed必须用勺子喂养:

sed -n -e '/pattern1/{' -e 'p' -e ':a' -e 'N' -e '/pattern2/!ba' -e 's/.*\n//' -e '}' -e 'p' inputfile
sed -n '/pattern1/{p; :a; N; /pattern2/!ba; s/.*\n//}; p' inputfile

Explanation:

/pattern1/{         # if pattern1 is found
    p               # print it
    :a              # loop
        N           # and accumulate lines
    /pattern2/!ba   # until pattern2 is found
    s/.*\n//        # delete the part before pattern2
}
p                   # print the line (it's either pattern2 or it's outside the block)

Edit:

Some versions of sed have to be spoon-fed:

sed -n -e '/pattern1/{' -e 'p' -e ':a' -e 'N' -e '/pattern2/!ba' -e 's/.*\n//' -e '}' -e 'p' inputfile
2024-10-25 14:35:12

这适用于 GNU 和 BSD sed:

sed '/pattern1/,/pattern2/{//!d;}' file

This will work for both GNU and BSD sed:

sed '/pattern1/,/pattern2/{//!d;}' file
春夜浅 2024-10-25 14:35:12

使用 awk 可以轻松完成此操作:

BEGIN { doPrint = 1; }
/pattern1/ { doPrint = 0; print $0; }
/pattern2/ { doPrint = 1; }
{ if (doPrint) print $0; }

我发现 sed 信息 是相当容易阅读,有很多例子。 awk 也是如此。

This is easily done with awk:

BEGIN { doPrint = 1; }
/pattern1/ { doPrint = 0; print $0; }
/pattern2/ { doPrint = 1; }
{ if (doPrint) print $0; }

I've found the sed info is fairly easy reading, with many examples. Same thing for awk.

握住我的手 2024-10-25 14:35:12
awk '/pattern1/{g=1;next}/pattern2/{g=0;next}g' file
awk '/pattern1/{g=1;next}/pattern2/{g=0;next}g' file
厌味 2024-10-25 14:35:12

这个 sed 代码也可以工作:

sed '/PATTERN1/,/PATTERN2/d' FILE

This sed code will work as well:

sed '/PATTERN1/,/PATTERN2/d' FILE
走过海棠暮 2024-10-25 14:35:12

您还可以使用 Unix 文本编辑器 ed:

echo '
pattern1
garbage
pattern2
' > test.txt

cat <<-'EOF' | sed -e 's/^ *//' -e 's/ *$//' | ed -s test.txt &>/dev/null
  H
  /pattern1/+1,/pattern2/-1d
  wq
EOF

有关详细信息,请参阅:使用 ed 文本编辑文件脚本编辑器

You may also use the Unix text editor ed:

echo '
pattern1
garbage
pattern2
' > test.txt

cat <<-'EOF' | sed -e 's/^ *//' -e 's/ *$//' | ed -s test.txt &>/dev/null
  H
  /pattern1/+1,/pattern2/-1d
  wq
EOF

For more information see: Editing files with the ed text editor from scripts

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