001、
[root@PC1 test04]# ls a.txt [root@PC1 test04]# cat a.txt ## 测试数据 3333 gene 9999 kkkk gene 7777 8888 gene 0000 6666 [root@PC1 test04]# sed -n '/gene/{n;p}' a.txt ## 输出匹配字符的下一行 9999 7777 0000 [root@PC1 test04]# sed -n '/gene/{N;p}' a.txt ## 同时输出匹配行 gene 9999 gene 7777 gene 0000
参考:https://blog.csdn.net/zhaozuoyou/article/details/123656890
标签:字符,gene,PC1,sed,linux,txt,root,test04 From: https://www.cnblogs.com/liujiaxin2018/p/17467346.html