首页 > 系统服务 > 详细

linux 系统sed命令如何提取奇数行、偶数行及整倍数行

时间:2020-10-01 23:55:20      阅读:198      评论:0      收藏:0      [点我收藏+]

1、创建测试数据 

[root@linuxprobe test]# seq 30 > a.txt
[root@linuxprobe test]# ls
a.txt
[root@linuxprobe test]# head a.txt
1
2
3
4
5
6
7
8
9
10

技术分享图片

 

 

2、提取奇数行 

[root@linuxprobe test]# sed -n 1~2p a.txt
1
3
5
7
9
11
13
15
17
19
21
23
25
27
29

 

3、提取偶数行  

[root@linuxprobe test]# sed -n 0~2p a.txt
2
4
6
8
10
12
14
16
18
20
22
24
26
28
30

 

4、提取三倍数行

[root@linuxprobe test]# sed -n 0~3p a.txt
3
6
9
12
15
18
21
24
27
30

其余以此类推。

 

5、每行加倍

[root@linuxprobe test]# sed 1~1p a.txt
1
1
2
2
3
3
4
4
5
5
6
6
7
7
……

 

linux 系统sed命令如何提取奇数行、偶数行及整倍数行

原文:https://www.cnblogs.com/liujiaxin2018/p/13759513.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!