From 2fbde09c7894783fc88395d1a840336f2cf121f8 Mon Sep 17 00:00:00 2001 From: Marcos Marado Date: Sun, 20 May 2018 18:29:20 +0100 Subject: [PATCH] scripts: teste ao geoportal --- scripts/10-geoportal.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 scripts/10-geoportal.sh diff --git a/scripts/10-geoportal.sh b/scripts/10-geoportal.sh new file mode 100755 index 0000000..671358f --- /dev/null +++ b/scripts/10-geoportal.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# http://geoportal.lneg.pt/index.php - site com flash + +if [ "$(wget http://geoportal.lneg.pt/geoportal/ -o /dev/null -O -|grep -i flashplayer -c)" -eq "0" ]; then + echo "geoportal: incumprimento pode já não existir"; +else + echo "geoportal: 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 geoportal|wc -l) -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