摘要:
1、测试数据 [root@PC3 test]# cat a.txt Beijing 2003 Beijing 2004 Beijing 2005 Beijing 2006 Beijing 2005 Beijing 2008 [root@PC3 test]# cat c.txt 1 2 3 4 5 6 阅读全文
摘要:
1、 [root@PC3 test]# cat c.txt 1 2 3 4 5 6 7 8 9 10 2、将2替换为xxxx,将5替换为yyyy,将7替换为zzz,删除匹配9的行,在第一行前增加first [root@PC3 test]# sed 's/2/xxxx/; s/5/yyyy/; s/7 阅读全文
摘要:
1、测试数据 [root@PC3 test]# cat c.txt 1 2 3 4 5 6 7 8 9 10 2、提取包含2的行,其后1行,其后2行 [root@PC3 test]# sed -n '/2/p' c.txt 2 [root@PC3 test]# sed -n '/2/,+1p' c. 阅读全文
摘要:
1、测试数据 [root@PC3 test]# cat b.txt e t 3 d g 2 k 8 p m 9 p 5 7 8 m i o e t d 2、awk加行号 [root@PC3 test]# awk '{print NR,$p}' b.txt 1 e t 3 2 d g 2 3 k 8 阅读全文
摘要:
1、测试数据 [root@PC3 test]# cat b.txt e t 3 d g 2 k 8 p m 9 p 5 7 8 m i o e t d 2、删除包含m的行 [root@PC3 test]# sed '/m/d' b.txt e t 3 d g 2 k 8 p 5 7 8 e t d 阅读全文
摘要:
1、测试数据如下: [root@PC3 test]# cat a.txt 1 Beijing 2003 2 Beijing 2004 3 Beijing 2005 4 Beijing 2006 5 Beijing 2007 6 Beijing 2008 7 Beijing 2007 8 Beijin 阅读全文