使用sed删除文件中从“{”到“}”的所有行

时间:2012-05-18 08:51:34

标签: shell unix sed awk tr

我有一个文件,其内容如下:

control_data {
some data dadadadf 
some data fsfsfs
some more data
.
.
.
}
more data below 
{
.
.
}

我想将“control_data”中的数据删除到第一个“}”

我尝试了一个命令

sed "s/control_data\([^}]*\)}//g"

但这仅在我们没有多行时才有效。当我们有如下数据时,此命令有效:

control_data {some data dadadadf some data fsfsfs some more data...}more data

它给出了:

more data {....} 

当我们跨多行数据时,如何使此命令有效? 我是shell脚本的新手,一些解释,答案将有很长的路要走。

提前致谢。

3 个答案:

答案 0 :(得分:3)

这可能不是一个理想的,但这使用了sed(你的sed代码)

cat ip_file.txt | tr '\n' ':' | sed "s/control_data\([^}]*\)}//g" | tr ':' '\n'

逻辑:我正在将所有新行转换为:然后使用您的sed代码然后将all:转换为换行符 注意:我的假设是:不会出现在任何地方的文件中。

答案 1 :(得分:2)

我的sed-fu很弱,但这就是我的工作(使用this answer作为指导):

[me@home]$ sed -n '/^control_data {/{:a;n;/^}/!ba;n};p' input_file.txt
more data below 
{
.
.
}

这是命令的细分

sed -n "             # "-n" = suppress automatic printing of pattern space
/^control_data {/ {  # if (line matches control data)
   :a;                 #   mark this spot with label a
   n;                  #   get next line
   /^}/!ba             #   if (doesn't start with "}") go back to label a
   n;                  #   get next line before leaving this control block
};                   # end if
p;                   # print everything else not affected by previous block
" input_file.txt

答案 2 :(得分:1)

这可能对您有用:

sed '/^control_data {.*}$/d;/^control_data {/,/^}$/d' file
  • 第一个命令删除所有单行/^control_data {.*}$/d
  • 第二个命令删除所有块/^control_data {/,/^}$/d