从多个文件中删除特定的行号

时间:2014-05-04 22:52:59

标签: linux shell command-line vi

我想删除几个文件的第二行(有200个)。所有文件都以Glo开头,所以我想做一个命令或shell来删除该文件的所有第二行:

示例:

Glo1:
1 AAA
2 BBB
3 the third line

Glo2:
1 DDD
2 RRR
3 the third line

我想要的只是删除第二行,所以文件将如下所示:

Glo1:
1 AAA
2 the third line

Glo2:
1 DDD
2 the third line

问候!

1 个答案:

答案 0 :(得分:2)

由于您提到使用shell:

sed -i '3d' Glo*