mirror of
https://github.com/marado/RNID.git
synced 2024-11-10 00:40:40 +00:00
5c3e727ddd
Dos três incumprimentos apontados, já só encontramos um deles. O script foi actualizado para detectar (e só) o incumprimento restante, e a tabela de incumprimentos actualizada em conformidade. Closes: #58
25 lines
1.1 KiB
Bash
Executable File
25 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
links="$(wget https://tcp.dgterritorio.gov.pt/procurar -o /dev/null -O -|hxnormalize -x -l 10000|hxselect .feed-icon|hxselect a -s '\n')";
|
|
|
|
# How many links are there? if there is less than 1, something has changed,
|
|
# validate manually. If there are more than 1, maybe there's a XLS but also
|
|
# other (open) format. Let's validate manually and adjust the script if the
|
|
# violation stands.
|
|
nlinks="$(echo "$links"|wc -l)";
|
|
xls="$(echo "$links"|grep -c -i xls)";
|
|
|
|
# TODO: complementar validações com o incumprimento do XLS
|
|
|
|
if [ "$nlinks" -eq "1" ] && [ "$xls" -eq "1" ]; then
|
|
echo "dgt: 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 -v -c "dgterritorio")" -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
|
|
else
|
|
echo "dgt: algo mudou (nlinks $nlinks, xls $xls), incumprimento potencialmente resolvido (verificar manualmente!)";
|
|
fi
|