Converti csv in tabella HTML


8

Ho un Medical.csvfile con righe del seguente formato,

    field: 'participation.type', displayName: 'program_type', type: 'String',path:'participation'
    field: 'participation.program', displayName: 'program_name', type: 'String',path:'participation'

Voglio scrivere uno script bash per convertirlo in tabella HTML con field, displayNamee typecome le intestazioni in modo dinamico.

Il Csv2HtmlConverter.sh(Ispirato dalla risposta alla tabella Converti csv in html utilizzando ) è

    echo "<table>" ;
    while read INPUT ; do
            echo "<tr><td>${INPUT//,/</td><td>}</td></tr>" ;
    done < Medical.csv ;
    echo "</table>"

Il risultato per lo script sopra è come sotto che va bene in una certa misura, ma voglio aggiungere <th>field</th>, in <th>displayName</th>modo dinamico.

<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>

Risposte:


12

Questo farà il trucco:

echo "<table>" ;
print_header=true
while read INPUT ; do
  if $print_header;then
    echo "<tr><th>$INPUT" | sed -e 's/:[^,]*\(,\|$\)/<\/th><th>/g'
    print_header=false
  fi
  echo "<tr><td>${INPUT//,/</td><td>}</td></tr>" ;
done < Medical.csv ;
echo "</table>"

La spiegazione della regex utilizzata è sed:

:[^,]*(,|$)

Visualizzazione delle espressioni regolari

Questo corrisponderà : 'participation.type',e :'participation'\n( $significa fine dell'input / linea in regex).


Funziona perfettamente alle mie esigenze. Rispetto.
prayagupd,

1
Immagini per gentile concessione di debuggex.com
Stéphane Chazelas,

0

Ecco uno script di shell che convertirà un CSV in HTML:

http://giantdorks.org/alain/bash-and-awk-to-convert-delimited-data-csv-tsv-etc-to-html-tables/

Per affrontare specificamente il tuo caso d'uso.

Supponendo il seguente CSV originale:

$ cat original.csv 
field: 'participation.type', displayName: 'program_type', type: 'String',path:'participation'
field: 'participation.program', displayName: 'program_name', type: 'String',path:'participation'

Si consiglia di modificarlo leggermente:

$ echo field,displayName > modified.csv
$ awk -F"'" 'OFS="," {print$2,$4}' original.csv >> modified.csv

Per produrre la seguente versione pulita:

$ cat modified.csv 
field,displayName
participation.type,program_type
participation.program,program_name

Quindi eseguendo lo script collegato in precedenza sul CSV originale, verrà prodotto il seguente HTML:

$ csv2htm.sh --head original.csv 
  <table>
    <thead>
      <tr>
        <th>field: 'participation.type'</th>
        <th> displayName: 'program_type'</th>
        <th> type: 'String'</th>
        <th>path:'participation'</th>
      </tr>
    </thead>
      <tr>
        <td>field: 'participation.program'</td>
        <td> displayName: 'program_name'</td>
        <td> type: 'String'</td>
        <td>path:'participation'</td>
      </tr>
  </table>

Eseguendolo sul CSV ripulito, si produrrebbe:

$ csv2htm.sh --head modified.csv
  <table>
    <thead>
      <tr>
        <th>field</th>
        <th>displayName</th>
      </tr>
    </thead>
      <tr>
        <td>participation.type</td>
        <td>program_type</td>
      </tr>
      <tr>
        <td>participation.program</td>
        <td>program_name</td>
      </tr>
  </table>

1
La sceneggiatura, a prima vista, non sembra gestire i contenuti delle celle tra virgolette (che potrebbero anche estendersi su più righe).
Anthon,

Giusto, no. Potrebbe sicuramente aggiungere la gestione delle celle quotata o semplicemente preelaborare con qualcosa del tipo:sed 's/"//g' input
Alain Kelder,

Oppure, se i dati contengono anche virgolette doppie:sed 's/^"//;s/"$//;s/","/,/g;' input.csv
Alain Kelder,

0
host=`hostname`
now=`date +"%d-%b-%y"`
now=`echo $now| tr '[a-z]' '[A-Z]'`
yest=`TZ=CST+24 date +%d-%b-%y`
yest=`echo $yest| tr '[a-z]' '[A-Z]'`
sub="Jobs-$host-$now-HealthReport"

if [ -s jobs.csv ]
then
awk 'BEGIN{
FS=","
print "<HTML>""<TABLE border=1 width='100%' align='centre' ><tr bgcolor='#000080'><TH><FONT COLOR='#FFFFFF'>HSCR-DBMSJOB HEALTH REPORT  </TH></FONT>"
print "</TABLE>"
print "<HTML>""<TABLE border=1 width='100%' align='centre' bgcolor='#C6C6C6' BORDERCOLOR='#CCFF00' ><tr bgcolor='#5F9EA0'><TH>SUMMARY</TH>"
print "</TABLE>"
print "<HTML><TABLE border=2 width='100%' align='centre' BORDERCOLOR='#330000' ><trbgcolor='#FFFFCC'>"

print "<TH>BROKEN</TH><TH>SCHEMA_USER</TH><TH>JOB_ID</TH><TH>LAST_DATE</TH><TH>LAST_SEC</TH><TH>THIS_DATE</TH>"
print "<TH>THIS_SEC</TH><TH>NEXT_DATE</TH><TH>NEXT_SEC</TH><TH>NAME</TH>"
}


{
    printf "<TR>"
            for(i=1;i<=10;i++){

                      if(i == 1 && $i == "N" || i == 4 && $i == n || i == 4 && $i == y )
                    {
                            printf "<TD bgcolor='#75923C'>%s</TD>", $i
                    }
                    else if(i == 1 && $i == "Y" || i == 4 && $i != n && $i != y)
                    {
                            printf "<TD bgcolor='#FF0000'>%s</TD>", $i
                    }
                    else
{
                            printf "<TD>%s</TD>", $i
}
            }
            print "</TR>"
    }

END{

            print "</TABLE></BODY></HTML>"
    }' y="$yest" n="$now" jobs.csv > jobstatus-$host-$now.html
else
echo "file not found"

fi

Potete per favore riformattare il codice per una migliore leggibilità. E aggiungi alcuni commenti ...
Romeo Ninov

0

So che è una risposta tardiva a questa domanda, ma aiuterà chi cerca su Google una soluzione, per convertire l'output del comando bash in formato tabella html. È disponibile uno script semplice per farlo in: https://sourceforge.net/projects/command-output-to-html-table/ che può essere utilizzato per convertire qualsiasi output di comando o file in un bel formato di tabella html.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.