系统相关
首页 > 系统相关> > linux 中利用变量作为行号删除指定的行

linux 中利用变量作为行号删除指定的行

作者:互联网

 

1、

root@PC1:/home/test3# ls
a.txt
root@PC1:/home/test3# cat a.txt
1 e d
2 a g
3 w e
4 d g
5 g j
6 e j
7 l m
8 i n
root@PC1:/home/test3# a=3                            ## 行号  3
root@PC1:/home/test3# b=6                            ## 行号  6
root@PC1:/home/test3# sed $(($a)),$(($b))d a.txt     ## 利用变量作为行号删除指定的行
1 e d
2 a g
7 l m
8 i n

 

标签:test3,删除,##,PC1,行号,linux,home,root
来源: https://www.cnblogs.com/liujiaxin2018/p/16392692.html