mirror of
https://github.com/marado/RNID.git
synced 2024-11-10 08:50:49 +00:00
f32f9d57de
* actualizada a informação do incumprimento * actualizado o script de validação (depende do gh) * entrada de combustiveis passa a ser a 47
14 lines
675 B
Bash
Executable File
14 lines
675 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$(wget "https://www.precoscombustiveis.dgeg.pt/pagina.aspx?screenwidth=1920&mlkid=pciumvukbs2o1z55tmon3ae3&menucb=1&cn=6160AAAAAAAAAAAAAAAAAAAA" -o /dev/null -O -|grep Flash -c)" -eq "0" ]; then
|
|
echo "combustiveis: incumprimento pode já não existir";
|
|
else
|
|
echo "combustiveis: 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 "combustiveis")" -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
|