gpt4 book ai didi

regex - sed 从正则表达式到正则表达式的打印行

转载 作者:行者123 更新时间:2023-11-29 09:09:13 25 4
gpt4 key购买 nike

我有一个包含以下文本的文件:

text
START
This
has
to
be
printed
STOP
more text

现在我想要打印 START 和 STOP 之间的文本。我写了以下内容:

cat file | sed '/START/,/STOP/p'

但这似乎并没有按照我的意愿行事。有什么建议吗?

最佳答案

如果你想在开始和停止标志之间打印,尝试:

sed -n '/START/,/STOP/ { //!p }' file.txt

结果:

This
has
to
be
printed

关于regex - sed 从正则表达式到正则表达式的打印行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13177153/

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