7
0
mirror of https://github.com/marado/RNID.git synced 2024-09-20 00:45:17 +00:00
rnid/scripts/30-2020.sh
Marcos Marado 8a8bcf7138 portugal2020: grep the entry more explicitly
Avoid mistakenly update also porto2020's result.
2019-11-23 21:47:57 +00:00

16 lines
682 B
Bash
Executable File

#!/bin/bash
wget https://www.portugal2020.pt/content/lista-de-operacoes-aprovadas -o /dev/null -O -|hxnormalize -x -l 10000|hxselect .even -c |hxselect .even -c > even
if [ ! "$(diff even scripts/30/even|wc -l)" -eq "0" ]; then
echo "2020: incumprimento pode já não existir";
else
echo "2020: 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 "portugal2020")" -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 even