本文介绍了在FreeBSD中删除Mutiline的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们如何在FreeBSD中使这项工作成功?
How can we make this work in FreeBSD?
在FreeBSD中包含模式的多行删除块.
Multiple line delete block containing a pattern in FreeBSD.
sed '/{START-TAG/{:a;N;/END-TAG}/!ba};/ID: 222/d' data.txt
请参阅使用模式对sed多行删除.
推荐答案
在FreeBSD sed
中,您不能使用分号分隔命令.但是,您可以使用-e
链接命令:
In FreeBSD sed
, you can't separate commands using a semi-colon. However, you may use -e
chained commands:
sed -e '/{START-TAG/{' -e :a -e N -e '/END-TAG}/!ba' -e '}' -e '/ID: 222/d' file > outputfile
要内联保存内容,请使用
To save the contents inline, use
sed -i '' -e '/{START-TAG/{' -e :a -e N -e '/END-TAG}/!ba' -e '}' -e '/ID: 222/d' file
这篇关于在FreeBSD中删除Mutiline的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!