7
0
mirror of https://github.com/marado/RNID.git synced 2024-09-19 16:35:24 +00:00
rnid/scripts/24-matrizpix.sh
Marcos Marado 944a7abd6b matriz[net|pix]: agora a aldrabar o user agent
Os incumprimentos são os mesmos, e o site também, mas agora dão 403
aos pedidos de wget's... por isso o script agora anuncia um user agent
diferente.
2023-11-18 18:10:59 +00:00

14 lines
652 B
Bash
Executable File

#!/bin/bash
if [ "$(wget -U "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" http://www.matrizpix.dgpc.pt/matrizpix/home.aspx -o /dev/null -O -|grep -i x-shockwave-flash -c)" -eq "0" ]; then
echo "matrizpix: incumprimento pode já não existir";
else
echo "matrizpix: 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 matrizpix|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