so, i have two text file containing
title1
title2
stored in title.txt
and
data1
data2
stored in data.txt
and i'd like to join it with cat
, so it gonna look like this
title1 | data1
title2 | data2
but, the regular cat title.txt data.txt > out.txt
turns the out.txt file into
title1
title2
data1
data2
i need help on using the cat
so the file can look like this:
title1 | data1
title2 | data2
any answer will be appreciated
Thanks