Linux paste的用法

Linux paste的用法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[root@server200-20 ~]# cat a.txt  
1
2
3
4
5
[root@server200-20 ~]# cat b.txt 
a
b
c
d
e
[root@server200-20 ~]# paste a.txt  b.txt 
1       a
2       b
3       c
4       d
5       e



本文转自 pcnk 51CTO博客,原文链接:http://blog.51cto.com/nosmoking/1630579,如需转载请自行联系原作者
上一篇:VBS递归遍历文件和dictionary使用


下一篇:《像计算机科学家一样思考Python》——3.2 类型转换函数