bueno bueno, necesito algo de ayuda con este codigo:
#!/bin/bash
echo "content-type: text text/html"
echo ""
echo "<html><head></head><body bgcolor='orange'>"
echo "El resultado de la consulta es el siguiente:"
read DNI_SOCIO
DNI_SOCIO=echo $DNI_SOCIO | cut -d"=" -f2
if [ cat /var/www/html/escarbapedal/informacion/ciclistas_btt.bd | grep "$DNI_SOCIO" | tee /tmp/resultado | wc -l
-eq 2 ]
then
NOMBRE_COMPLETO=cat /tmp/resultado | cut -d":" -f1 | tr -s ":" " "
echo "<table border='2'"
echo "<tr>"
echo "<td>NOMBRE COMPLETO</td>"
echo "</tr>"
echo "<tr>"
echo "<td>$NOMBRE_COMPLETO</td>"
echo "</tr></table>"
else
echo "Hay 1 o 2 personas con este dni"
fi
rm -f /tmp/resultado
echo "</body></html>"
la cosa es que al mostrar resultados en una tabla, tendria que salir asi:
|nombre|
|pepito |
|juanito|
y en vez de eso, me sale asi: