#!/bin/bash
rutaplantilla=/var/www/html/weewx/meteoclimatic/meteoclimatic.htm
temp=$(cat $rutaplantilla | grep TMP)
temp="${temp// /}"
if [[ $temp == "*TMP=N/A" ]]
then reboot now
fi




