001、
[root@pc1 test03]# ls a.txt [root@pc1 test03]# cat a.txt ## 测试数据 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [root@pc1 test03]# awk '{OFS = "\t"; NF -= 1}1' a.txt ## 删除最后一列 01 02 03 04 05 06 07 08 09 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 [root@pc1 test03]# awk '{OFS = "\t"; NF -= 2}1' a.txt 01 02 03 04 05 06 07 08 11 12 13 14 15 16 17 18 21 22 23 24 25 26 27 28 [root@pc1 test03]# awk '{OFS = "\t"; NF -= 5}1' a.txt ## 删除最后5列 01 02 03 04 05 11 12 13 14 15 21 22 23 24 25
。
标签:02,若干列,22,pc1,一列,linux,test03,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/17697350.html