Monday, January 25, 2016

Concatenar/Mesclar arquivos em colunas paralelas (merge lines)

$ cat arquivo1.txt
a
b
c
$ cat arquivo2.txt
1
2
3

$ paste arquivo1.txt arquivo2.txt
a      1
b      2
c      3

$ paste -d'\n'  arquivo1.txt arquivo2.txt
a
1
b
2
c
3

Use the return of  execution programs as input to another program
$ paste <(./progA) <(./progB)


No comments:

Blog Archive