iso
8/22/2019 - 12:22 PM

paste command

Learnt something new this week

I have two files where I want to concat the two column together to create a readme table

$ cat fruit
apple
pineapple
orange
lemon

$ cat count
1
16
49
18

$ paste -d "|" fruit count
apple|1
pineapple|16
orange|49
lemon|18

Oh I heart linux command