The file letters.csv contains:
b,a,c,
The file numbers.csv contains:
32 34 25 13
I would like to append numbe
You can use tr:
tr
cat letters.csv numbers.csv | tr '\n' ',' | sed 's/,$/\n/'
(I hope this is not a useless use of cat. :-))
cat
The sed at the end is needed to replace the last , with a newline character.
sed
,