This question is really important since I need to present the data to my supervisor asap.
I have a list of records in this format:
Name
Date
Place
Name
Date
Place
I want these records into one line like this:
Name,Date,Place
Name,Date,Place
How can I achieve this under Linux by using awk or sed easily?
THANK YOU.
With
Gnu AWK, you can do something like this –Test: