diff options
author | tv <tv@also> | 2011-08-06 00:57:01 +0200 |
---|---|---|
committer | tv <tv@also> | 2011-08-06 00:57:01 +0200 |
commit | 894b91c34386a3040c8ef7e95d547bbecb87554e (patch) | |
tree | c102bae35677a7f215028bfcef42d0f06243b88e /kachelmann/conditions.pl | |
parent | fcb42f9d82e3ae948179c95b13bc00a03aa0c017 (diff) | |
parent | d0a2cc1b54f789455a56e088c6a920b6dc491a38 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'kachelmann/conditions.pl')
-rwxr-xr-x | kachelmann/conditions.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kachelmann/conditions.pl b/kachelmann/conditions.pl index 61c43330..6d8b5541 100755 --- a/kachelmann/conditions.pl +++ b/kachelmann/conditions.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl use XML::Simple; -system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > weather.xml"); +system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > /tmp/kachelmann/weather.xml"); my $xml = new XML::Simple; -my $data = $xml->XMLin("weather.xml"); +my $data = $xml->XMLin("/tmp/kachelmann/weather.xml"); my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Celsius\n"; system("espeak \"$sentence\""); |