summaryrefslogtreecommitdiff
path: root/scripts/check-hafas-urls
blob: 911faaddac32ee0c113d491df214d9edea93d342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env zsh

export PERL5LIB=lib

checks="AVV Ponttor, AC
BART San Francisco International Airport, San Mateo
DB Berlin Jannowitzbrücke
IE Dublin
NAHSH Flensburg
NASA Wernigerode Hbf
NVV Kassel Hauptbahnhof
ÖBB Wien Meidling
VBB S+U Jannowitzbrücke (Berlin)
VBN Diepholz"

echo $checks | while read service stop; do
        echo -n "${service} ... "
        if bin/hafas-m -s $service $stop > /dev/null; then
                echo OK
        fi
done