mirror of
https://github.com/marado/RNID.git
synced 2024-11-10 08:50:49 +00:00
8ecb8d84f1
This change should not make a difference, but it does. While I don't figure out why, this hack makes it do what it is supposed to.
18 lines
810 B
Bash
Executable File
18 lines
810 B
Bash
Executable File
#!/bin/bash
|
|
|
|
wget --no-check-certificate https://www.sg.mai.gov.pt/AdministracaoEleitoral/RecenseamentoEleitoral/ResultadosRecenseamento/Paginas/default.aspx -o /dev/null -O -|grep -v __REQUESTDIGEST|grep -v VIEWSTATE|hxnormalize -x -l 1000|hxselect .conteudo > mai-tmp
|
|
cat mai-tmp|hxselect a > mai
|
|
rm mai-tmp
|
|
if [ ! "$(diff mai scripts/14/mai|wc -l)" -eq "0" ]; then
|
|
echo "mai: incumprimento pode já não existir";
|
|
else
|
|
echo "mai: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
|
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
|
test "$(echo "$line"|grep -c -v sg.mai)" -eq "1" \
|
|
&& echo "$line" \
|
|
|| (h=$(echo "$line"|cut -d\| -f1-4); t=$(echo "$line"|cut -d\| -f6-); echo "$h| $(date +%Y/%m/%d) |$t");
|
|
done < README.md > new
|
|
mv new README.md
|
|
fi
|
|
rm mai
|