J'ai un Medical.csv
fichier avec des lignes de format suivant,
field: 'participation.type', displayName: 'program_type', type: 'String',path:'participation'
field: 'participation.program', displayName: 'program_name', type: 'String',path:'participation'
Je veux écrire un script bash pour le convertir en table HTML avec field
, displayName
et type
comme en-têtes dynamiquement.
Le Csv2HtmlConverter.sh
(Inspiré par la réponse lors de la conversion de la table csv en table html ) est
echo "<table>" ;
while read INPUT ; do
echo "<tr><td>${INPUT//,/</td><td>}</td></tr>" ;
done < Medical.csv ;
echo "</table>"
Le résultat pour le script ci - dessus est comme ci - dessous qui est bien dans une certaine mesure , mais je veux ajouter <th>field</th>
, de façon <th>displayName</th>
dynamique.
<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>