From a796d4b1b708e3904cda97e753a18b9c6cd9cbc1 Mon Sep 17 00:00:00 2001 From: Marcos Marado Date: Sun, 20 May 2018 15:50:36 +0100 Subject: [PATCH] scripts: teste para o site lxi da CM Lisboa --- scripts/06-lxi.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 scripts/06-lxi.sh diff --git a/scripts/06-lxi.sh b/scripts/06-lxi.sh new file mode 100755 index 0000000..dfb2cf6 --- /dev/null +++ b/scripts/06-lxi.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# http://lxi.cm-lisboa.pt/lxi/ - site em flash + +if [ "$(wget http://lxi.cm-lisboa.pt/lxi/ -o /dev/null -O -|grep -i flashplayer -c)" -eq "0" ]; then + echo "lxi: incumprimento pode já não existir"; +else + echo "lxi: 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 lxi|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