Convertir csv a tabla HTML


8

Tengo un Medical.csvarchivo con filas del siguiente formato,

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

Quiero escribir un script bash para convertirlo en una tabla HTML con field, displayNamey typecomo cabeceras de forma dinámica.

El Csv2HtmlConverter.sh(Inspirado por la respuesta en la tabla Convertir csv a html usando ) es

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

El resultado para el script anterior es la siguiente, que está bien hasta cierto punto, pero quiero añadir <th>field</th>, <th>displayName</th>de forma dinámica.

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

Respuestas:


12

Esto hará el truco:

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 explicación de la expresión regular utilizada es sed:

:[^,]*(,|$)

Visualización de expresiones regulares

Esto coincidirá : 'participation.type',y :'participation'\n( $significa el final de la entrada / línea en expresiones regulares).


Funciona perfectamente a mis requerimientos. El respeto.
prayagupd

1
Imágenes cortesía de debuggex.com
Stéphane Chazelas

0

Aquí hay un script de shell que convertirá un CSV a HTML:

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

Para abordar su caso de uso específicamente.

Asumiendo el siguiente CSV original:

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

Es posible que desee modificarlo ligeramente:

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

Para producir la siguiente versión limpiada:

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

Luego, ejecutando el script vinculado anteriormente en el CSV original, producirá el siguiente 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>

Ejecutarlo en el CSV limpio produciría:

$ 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
El script, a primera vista, no parece manejar el contenido de las celdas citadas (que incluso pueden abarcar varias líneas).
Anthon

Bien, no lo hace. Ciertamente podría agregar el manejo de celda citado o simplemente preprocesar con algo como:sed 's/"//g' input
Alain Kelder

O, si los datos también contienen comillas dobles: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

¿Puede reformatear su código para una mejor legibilidad? Y agregue algunos comentarios ...
Romeo Ninov

0

Sé que es una respuesta tardía a esta pregunta, pero ayudará a los que buscan en Google una solución, para convertir la salida del comando bash al formato de tabla html. Hay un script fácil disponible para hacer esto en: https://sourceforge.net/projects/command-output-to-html-table/ que se puede usar para convertir cualquier salida de comando o archivo a un formato de tabla html agradable.

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.