删除指定配置文件指定字符串开始的n行
用sed命令:
如,example文件内容:
... ...
test
1
2
3
4
5
6
... ...
现在要删除test后面5行包括test行。用以下命令:
sed -n $'/test/{n;n;n;n;n;b;}\np' test
等同于
sed -n $'/test/{n;n;n;n;n;n;}\np' test
等同于
sed -n '/test/{n;n;n;n;n;n};p' test
说明:以上{}里有多少n就代表删多少行。
阅读(1125) | 评论(0) | 转发(0) |