deprecate wget, use curl instead

This commit is contained in:
2024-02-29 11:48:04 +01:00
parent bb1a35f645
commit f9819b3ed5
3 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
WEB=$1
TMP=.status.tmp
wget -qO $TMP $WEB
curl -m 10 -s -o $TMP $WEB
STATUS=$(grep "Termination Status" $TMP | perl -pe "s/.*\<dd\>(.+)\<.*/\1/"
)