I'm newby in AWK and I know its not a specific question. I just need some advice how should i do this.
Given the following names in a file, author.list:
KOVACS PETER
Kiss Roland
Nagy jolan
Lisztes Tibor
Feher aNDRas
Korma Maria
Akarki Jack
write an AWK program that can read the names from the file and print them to an html table with a three-column format in an output file, output.html. The table should render like this:
Kovacs Peter Lisztes Tibor Akarki Jack
Kiss Roland Feher Andras
Nagy Jolan Korma Maria
An example execution:
awk -f convert.awk author.list > output.html
Ensure that output.html is a valid html file.
The table should render like thisbut we don't care about that, we care about helping you generate the HTML that would cause the table to render like this. So, edit your question to show the HTML you want the awk script to output as THAT is what you're (hopefully!) really asking us for help with.