7
0
mirror of https://github.com/marado/RNID.git synced 2024-09-19 16:35:24 +00:00
rnid/scripts/17-saude-cert.sh
Marcos Marado 4990acb6d7 Depending on wget version, failure can be 1 or 2
Since success is always 0, check if result is greater than zero instead.
2018-11-19 22:06:39 +00:00

14 lines
572 B
Bash
Executable File

#!/bin/bash
if [ ! "$(wget https://www.min-saude.pt/ -o -|grep cert|wc -l)" -gt "0" ]; 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