#!/bin/bash

cd /var/www/vhosts/velascom.es/htdocs/ranking

limitdate=20211226
currentdate=$(date +"%Y%m%d")

if [ $currentdate -ge $limitdate ]; then
   exit 
fi

echo "<html>" > resultado.html
echo "<head>" >> resultado.html
echo '  <meta charset="UTF-8">' >> resultado.html
echo "</head>" >> resultado.html
echo "<body>" >> resultado.html

date >> resultado.html
echo "<br/>";

cont=1
echo "<table>" >> resultado.html
cat resultado1.tmp | sort -r | while read line;do
    echo $line
    votos=$(echo "$line" | cut -f1 -d"|")
    votos=$(expr $votos - 0)
    nombre=$(echo "$line" | cut -f2 -d"|")
    echo "<tr>" >> resultado.html
    echo "<td>" >> resultado.html
    echo $cont >> resultado.html
    echo "</td><td>" >> resultado.html
    echo $nombre >> resultado.html
    echo "</td><td>" >> resultado.html
    echo $votos >> resultado.html
    echo "</td>"  >> resultado.html
    echo "</tr>" >> resultado.html
    cont=$(expr $cont + 1)
done
echo "</table></body></html>" >> resultado.html
