Plateforme de collecte des dons

pour les geeks qui veulent vérifier :

$ ./get-mv-totals.sh
total=96101 recu=8423 promis=16398

$ cat get-mv-totals.sh
#!/bin/bash

curl -s https://collecte.mavoix.info/dons/accueil.html
| awk -F ‹ [<>] › ’
{ gsub(" ", «  ») }
/Objectif:/ { total += $5 }
/progressbar/ { x+=1; next }
/span/ && x==1 { recu += $3 }
/span/ && x==2 { promis += $3; x=0 }
END { print « total= » total, « recu= » recu, « promis= » promis }

2 « J'aime »