cmdref.net - Cheat Sheet and Example

cmdref.net is command references/cheat sheets/examples for system engineers.

User Tools

Site Tools


Sidebar








Cloud



Etc


Reference














.

os:linux:command:paste.html



Linux Commands Cheat Sheet

Linux Commands : paste

Example

$ cat test1.txt
1
2
3
4
5
6
$ cat test2.txt
a
b
c
d
e
f
$
$ paste  test1.txt test2.txt
1       a
2       b
3       c
4       d
5       e
6       f
$
$ paste -d, test1.txt test2.txt
1,a
2,b
3,c
4,d
5,e
6,f
$



os/linux/command/paste.html.txt ยท Last modified: 2017/05/14 by admin

Page Tools