mirror of
https://github.com/marado/RNID.git
synced 2024-12-22 03:54:21 +00:00
covid: fix script's error validation
This is not fixing the fact that the script fails when running on an GA, but it will fall in the correct error case - hopefully.
This commit is contained in:
parent
f122f66572
commit
b8a536e625
@ -1,9 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
urls=$(for item in $(wget https://covid19.min-saude.pt/numero-de-novos-casos-e-obitos-por-dia/ -o /dev/null -O - | hxnormalize -x -l 1000| hxselect .wp-block-spms-accordion-item|hxselect a -s'\n'); do echo "$item"|grep href; done|cut -d\" -f2|grep -v ^$|grep -v http://Novos);
|
||||
urls=$(for item in $(wget https://covid19.min-saude.pt/numero-de-novos-casos-e-obitos-por-dia/ -o /dev/null -O - | hxnormalize -x -l 1000| hxselect .wp-block-spms-accordion-item|hxselect a -s'\n'); do echo "$item"|grep href; done|cut -d\" -f2|grep -v http://Novos);
|
||||
|
||||
nurls=$(echo "$urls"|wc -l);
|
||||
nnxls=$(echo "$urls"|grep -c -v xlsx);
|
||||
nurls=$(echo "$urls"|grep -v ^$|wc -l);
|
||||
nnxls=$(echo "$urls"|grep -v ^$|grep -c -v xlsx);
|
||||
|
||||
if [ "$nurls" -eq "0" ]; then
|
||||
echo "covid: não foram encontrados urls, script não deve estar a funcionar correctamente.";
|
||||
|
Loading…
Reference in New Issue
Block a user