From 639267310a48f27fc8923031a112c14be1171c0b Mon Sep 17 00:00:00 2001 From: Marcos Marado Date: Thu, 10 Jun 2021 22:21:03 +0100 Subject: [PATCH] imt: now automated with a test script --- scripts/49-imt.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 scripts/49-imt.sh diff --git a/scripts/49-imt.sh b/scripts/49-imt.sh new file mode 100644 index 0000000..dbbd306 --- /dev/null +++ b/scripts/49-imt.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +fail=0; +if [ "$(curl https://www.imt-ip.pt/sites/IMTT/Portugues/Formularios/Documents/Mod9IMT.pdf -o /dev/null; echo $?)" -eq "35" ]; then + echo "imt: problema com o certificado SSL"; + fail=1; +fi + +if [ ! "$fail" ]; then + echo "imt: incumprimento pode já não existir"; +else + echo "imt: 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 imt|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