From a7c45bff86b4eac454d128852232526a0e786fa2 Mon Sep 17 00:00:00 2001 From: Marcos Marado Date: Sun, 27 May 2018 13:44:36 +0100 Subject: [PATCH] nova validacao: scripts/17-saude-cert.sh --- README.md | 2 +- scripts/17-saude-cert.sh | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100755 scripts/17-saude-cert.sh diff --git a/README.md b/README.md index 2024c45..7ca6658 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Esta tabela mostra casos de incumprimento do regulamento: | http://www.sg.mai.gov.pt | XLS | [cadernos eleitorais](http://www.sg.mai.gov.pt/AdministracaoEleitoral/RecenseamentoEleitoral/ResultadosRecenseamento/Paginas/default.aspx) | 2018/05/27 | 2016/01/28 | | http://www.rcaap.pt/ | obriga depósito de dados em formatos não-livres ([lista de formatos autorizados](https://dre.pt/application/conteudo/72779297)) | MP3 | 2018/05/27 | | | https://servicos.min-saude.pt/utente/ | Acessibilidade | [site não cumpre WCAG 2.0 AA](https://servicos.min-saude.pt/utente/) | 2018/05/27 | 2016/09/27 | -| https://www.min-saude.pt/ | Certificado https inválido | https://www.min-saude.pt/ | 2018/03/24 | 2016/10/01 | +| https://www.min-saude.pt/ | Certificado https inválido | https://www.min-saude.pt/ | 2018/05/27 | 2016/10/01 | | http://www.act.gov.pt/ | Acessibilidade | [site não cumpre WCAG 2.0 A](http://www.act.gov.pt/) | 2017/07/31 || | https://www.igcp.pt/ | XLS | [conteúdo em XLS](https://www.igcp.pt/pt/gca/?id=80) | 2018/03/29 || | https://www.portalviva.pt/ | Java | [necessita plugin JAVA](https://www.portalviva.pt/lx/pt/myvivaclient/client-account-area/loads/new-load.aspx) | 2018/03/29 || diff --git a/scripts/17-saude-cert.sh b/scripts/17-saude-cert.sh new file mode 100755 index 0000000..7ac4c58 --- /dev/null +++ b/scripts/17-saude-cert.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +if [ ! "$(wget https://www.min-saude.pt/ -o -|grep cert|wc -l)" -eq "1" ]; then + echo "certificado min-saude: incumprimento pode já não existir"; +else + echo "certificado min-saude: 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 www.min-saude|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