码迷,mamicode.com
首页 > 系统相关 > 详细

linux文件拼接命令 paste

时间:2016-12-26 21:41:11      阅读:495      评论:0      收藏:0      [点我收藏+]

标签:linux文件   seq   拼接   style   root   命令   方式   nbsp   文件   

paste [文件名1 [文件名2] ……] [选项]

-s  把文件以行的方式拼接

-d  制定分隔符,默认以制表符分隔

 

[root@dagege ~]# seq 5 >1.txt
[root@dagege ~]# seq 6 10 >2.txt
[root@dagege ~]# seq 11 15 >3.txt
[root@dagege ~]# paste 1.txt 2.txt 3.txt 
1    6    11
2    7    12
3    8    13
4    9    14
5    10    15
[root@dagege ~]# paste -d , 1.txt 2.txt 3.txt 
1,6,11
2,7,12
3,8,13
4,9,14
5,10,15
[root@dagege ~]# paste -d , -s 1.txt 2.txt 3.txt 
1,2,3,4,5
6,7,8,9,10
11,12,13,14,15

 

linux文件拼接命令 paste

标签:linux文件   seq   拼接   style   root   命令   方式   nbsp   文件   

原文地址:http://www.cnblogs.com/dagege/p/6223890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!