删除相对于包含图案的线的n1个前一行和n2行

Pop*_*ive 8 unix bash sed

sed -e '/XXXX/,+4d' fv.out
Run Code Online (Sandbox Code Playgroud)

我必须在文件中找到一个特定的模式,同时删除5行以上和4行.我发现上面的行删除了包含模式的行和它下面的四行.

sed -e '/XXXX/,~5d' fv.out
Run Code Online (Sandbox Code Playgroud)

在sed手册中,给出了〜表示图案所遵循的线.但是,当我尝试它时,它是删除后的模式后面的行.

那么,如何同时删除包含该模式的一行上方的5行和4行?

Bir*_*rei 5

一种方法sed,假设模式彼此不够接近:

内容script.sed:

## If line doesn't match the pattern...
/pattern/ ! { 

    ## Append line to 'hold space'.
    H   

    ## Copy content of 'hold space' to 'pattern space' to work with it.
    g   

    ## If there are more than 5 lines saved, print and remove the first
    ## one. It's like a FIFO.
    /\(\n[^\n]*\)\{6\}/ {

        ## Delete the first '\n' automatically added by previous 'H' command.
        s/^\n//
        ## Print until first '\n'.
        P   
        ## Delete data printed just before.
        s/[^\n]*//
        ## Save updated content to 'hold space'.
        h   
    } 

### Added to fix an error pointed out by potong in comments.
### =======================================================
    ## If last line, print lines left in 'hold space'.
    $ { 
        x   
        s/^\n//
        p   
    } 
### =======================================================


    ## Read next line.
    b   
}

## If line matches the pattern...
/pattern/ {

    ## Remove all content of 'hold space'. It has the five previous
    ## lines, which won't be printed.
    x   
    s/^.*$//
    x   

    ## Read next four lines and append them to 'pattern space'.
    N ; N ; N ; N 

    ## Delete all.
    s/^.*$//
}
Run Code Online (Sandbox Code Playgroud)

运行如下:

sed -nf script.sed infile
Run Code Online (Sandbox Code Playgroud)