mirror of
https://github.com/marado/RNID.git
synced 2024-11-08 16:02:39 +00:00
1a4520020f
Já todas as imagens têm alt, mas três delas têm o alt vazio.
17 lines
758 B
Bash
Executable File
17 lines
758 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# XXX: pode haver outro incumprimento com o certificado HTTPS, verificar
|
|
|
|
# https://www.iefp.pt/ - não cumpre WCAG 2.0 AA
|
|
if [ "$(wget --no-check-certificate https://servicos.min-saude.pt/utente/ -o /dev/null -O - | grep "<img" |grep -c "alt=\"\"")" -eq "0" ]; then
|
|
echo "servicos min-saude: incumprimento pode já não existir";
|
|
else
|
|
echo "servicos 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 servicos.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
|