Преглед изворни кода

Use new URLs; skip SSL cert checks

master
Adrian Short пре 8 година
родитељ
комит
c99b535059
1 измењених фајлова са 4 додато и 3 уклоњено
  1. +4
    -3
      get.sh

+ 4
- 3
get.sh Прегледај датотеку

@@ -8,18 +8,19 @@
# Adrian Short 26 Feb 2016

COOKIEJAR=cookiejar.txt
BASEURL=https://fastweb.sutton.gov.uk/fastweb

mkdir -p $1
cd $1

curl -s -c $COOKIEJAR 'http://gis.sutton.gov.uk/FASTWEB/welcome.asp' > /dev/null # Get the session cookies
curl -s -c $COOKIEJAR "$BASEURL/welcome.asp" > /dev/null # Get the session cookies

curl -s -c $COOKIEJAR \
--data "cbxCopyrightStatement=on" \
--data "ApplicationNumber=$1" \
'http://gis.sutton.gov.uk/FASTWEB/images.asp' \
"$BASEURL/images.asp" \
| grep -E -o 'http.+?\.(pdf|PDF)' \
| wget --no-clobber -i -
| wget --no-check-certificate --no-clobber -i -

rm $COOKIEJAR
ls -lht


Loading…
Откажи
Сачувај