blob: 7b66a65817562e672b7f5d0cbc95dc4fbe8b496a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/usr/bin/env zsh
export PERL5LIB=lib
checks="AVV Ponttor, AC
BART San Francisco International Airport, San Mateo
BLS Bern
BVG 900003104
DB Berlin Jannowitzbrücke
IE Dublin
KVB 900000802
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
|