Tom's HardwareTom's IT Pro
Hi,I need to combine 2 files line-by-line e.g.:file1:abcfile2:xyzresults:axbyczI have been trying to loop with sed, but with no luck.Regards,Neil
I need to combine 2 files line-by-line e.g.:file1:abc
file2:xyz
results:axbycz
I have been trying to loop with sed, but with no luck.
Regards,Neil
paste -d"\0" file1 file2
More Tom's Guide News