linux 中 sed命令匹配特定字符之间的数据

 

001、

root@DESKTOP-1N42TVH:/home/test2# ls
a.txt
root@DESKTOP-1N42TVH:/home/test2# cat a.txt
01
02
AAA
03
04
05
BBB
06
07
08
CCC
09
10
root@DESKTOP-1N42TVH:/home/test2# sed -n '/AAA/,/BBB/p' a.txt    ## 匹配AAA和BBB之间的数据
AAA
03
04
05
BBB

 

002、

root@DESKTOP-1N42TVH:/home/test2# ls
a.txt
root@DESKTOP-1N42TVH:/home/test2# cat a.txt
01
02
AAA
03
04
05
BBB
06
07
08
CCC
09
10
root@DESKTOP-1N42TVH:/home/test2# sed -n '/AAA/,/BBB/{/AAA/b; p}' a.txt  ## 匹配AAA和BBB之间的数据但是不包括AAA
03
04
05
BBB

 

003、

root@DESKTOP-1N42TVH:/home/test2# ls
a.txt
root@DESKTOP-1N42TVH:/home/test2# cat a.txt
01
02
AAA
03
04
05
BBB
06
07
08
CCC
09
10
root@DESKTOP-1N42TVH:/home/test2# sed -n '/AAA/,/BBB/{/BBB/b;p}' a.txt ## 匹配AAA和BBB之间的数据,不包括BBB
AAA
03
04
05

 

004、

root@DESKTOP-1N42TVH:/home/test2# ls
a.txt
root@DESKTOP-1N42TVH:/home/test2# cat a.txt
01
02
AAA
03
04
05
BBB
06
07
08
CCC
09
10
root@DESKTOP-1N42TVH:/home/test2# sed -n '/AAA/,/BBB/{/AAA/b; /BBB/b;p}' a.txt  ## 匹配AAA和BBB之间的数据,但是不包括AAA和BBB
03
04
05

 

005、

root@DESKTOP-1N42TVH:/home/test2# cat a.txt
01
02
AAA
03
04
05
04
07
03
BBB
06
07
08
CCC
09
10
root@DESKTOP-1N42TVH:/home/test2# sed -n '/AAA/,/BBB/{/AAA/b; /BBB/b; p}' a.txt
03
04
05
04
07
03
root@DESKTOP-1N42TVH:/home/test2# sed -n '/AAA/,/BBB/{/AAA/b; /BBB/b; /04/b; p}' a.txt ## 匹配AAA和BBB之间的行,但是不输出AAA、BBB、同时不输出04
03
05
07
03

 

006、

root@DESKTOP-1N42TVH:/home/test2# ls
a.txt
root@DESKTOP-1N42TVH:/home/test2# cat a.txt   ## 调整测试数据
01
02
AAA
03
04
03
BBB
06
07
BBB
08
CCC
09
AAA
10
BBB
33
root@DESKTOP-1N42TVH:/home/test2# sed -n '/AAA/,/BBB/p' a.txt  ## 成对匹配的
AAA
03
04
03
BBB
AAA
10
BBB

 

posted @ 2022-07-17 21:26  小鲨鱼2018  阅读(1030)  评论(0编辑  收藏  举报