Este é um blog onde anoto dicas técnicas de informática e computação.
This is a blog where I write down technical tips on computing.
Be aware that some resources used in this blog may use cookies to collect information used by Ads and Google Analytics. I do not monetize from this website, neither require or use personal information.
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
No comments:
Post a Comment