diff --git a/cpdAlerts.sh b/cpdAlerts.sh index b93980d..f13af51 100755 --- a/cpdAlerts.sh +++ b/cpdAlerts.sh @@ -50,7 +50,7 @@ function madrid { comunidad="Madrid" pdfFile=".boletin$comunidad.pdf" mainURL="https://bocm.es" - pdfURL=$(wget -q $mainURL -O - | grep -i "Descargar el boletín completo" | awk '{ print $12 }' | cut -d "\"" -f 2) + pdfURL=$(wget -q $mainURL -O - | grep -i -o "" | grep -o -i "http.*\.PDF") wget -q $pdfURL -O $pdfFile if [ "$(pdftotext $pdfFile - | grep -i -E -n -3 "$keyWords" | tee .cpds | wc -l)" = 0 ]; then echo "0 resultados"; rm -rf .cpds .boletin*; exit; else sendMail $pdfURL $comunidad;fi rm -rf .cpds .boletin*