Showing 1 changed files with 2 additions and 1 deletions
+2 -1
analyse-votes-AN
... ...
@@ -64,7 +64,8 @@ test -r "$archive_scrutins" && first=$(tar tf "$archive_scrutins" | tail -1) ||
64 64
 if test $first -lt $last; then
65 65
     echo "récupération des scrutins n°$((first+1)) à n°$last dans "$archive_scrutins" (à conserver autant que possible)" >&2
66 66
     for scrutin in $(seq $((first+1)) $last); do
67
-        wget --directory-prefix=/dev/shm -q "http://www2.assemblee-nationale.fr/scrutins/detail/(legislature)/15/(num)/$scrutin" \
67
+        wget -qO- "http://www2.assemblee-nationale.fr/scrutins/detail/(legislature)/15/(num)/$scrutin" \
68
+            |  sed -r '0,/< *div class="titre-bandeau-bleu +to-print" *>/d; /< *script +type="text\/javascript" *>/,$d' > /dev/shm/$scrutin \
68 69
             && tar -C /dev/shm -rf "$archive_scrutins" $scrutin \
69 70
             && rm -f /dev/shm/$scrutin \
70 71
             && echo -n '.' >&2