Ich habe eine Medical.csv
Datei mit Zeilen im folgenden Format:
field: 'participation.type', displayName: 'program_type', type: 'String',path:'participation'
field: 'participation.program', displayName: 'program_name', type: 'String',path:'participation'
Ich möchte ein schreiben Bash - Skript , es mit zu HTML - Tabelle zu konvertieren field
, displayName
und type
als Header dynamisch.
Die Csv2HtmlConverter.sh
(Inspiriert von Antwort bei Konvertieren von CSV in HTML-Tabelle mit ) ist
echo "<table>" ;
while read INPUT ; do
echo "<tr><td>${INPUT//,/</td><td>}</td></tr>" ;
done < Medical.csv ;
echo "</table>"
Das Ergebnis für obigen Skript ist als unten die feine zu einem gewissen Grad, aber ich mag hinzufügen <th>field</th>
, <th>displayName</th>
dynamisch.
<table>
<tr><td>field: 'participation.type'</td><td> displayName: 'program_type'</td><td> type: 'String'</td><td>path:'participation'</td></tr>
<tr><td>field: 'participation.program'</td><td> displayName: 'program_name'</td><td> type: 'String'</td><td>path:'participation'</td></tr>
</table>