Click to See Complete Forum and Search --> : How to make each file on a separate line (was: this is what i got)


HelpPlease
12-09-2003, 03:53 PM
ok...........these are files:

file1.txt
jane doe 12/25/80
john doe 09/05/86
jenny doe 06/30/59
james doe 08/21/59


file2.txt
Adress: 5555 Whitby Rd. Baltimore,MD 21206


file3.txt
Phone Number: (410)555-5050



cat file1.txt file2.txt file3.txt >> together.txt...........produces:

jane doe 12/25/80
john doe 09/05/86
jenny doe 06/30/59
james doe 08/21/59Adress: 5555 Whitby Rd. Baltimore,MD 21206Phone Number: (410)555-5050


how to i make each file go on a separate line?

JsPr
12-09-2003, 04:13 PM
Hi.
I assume you want file 2 and 3 to be on separate lines?
If so a <newline> at the bottom of file1 and file2 did it for me. I suspect there are more neat ways to do it :)