summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions.pl
diff options
context:
space:
mode:
authortv <tv@also>2011-08-06 00:57:01 +0200
committertv <tv@also>2011-08-06 00:57:01 +0200
commit55484e937265d6f6755b146140e46ab1ed0e5fee (patch)
treed9546b1056013b8cbd16efaeac36b8a6d562aaf3 /kachelmann/conditions.pl
parent3f3f5a53506bc4add35a246e9cc9c7e440ee8766 (diff)
parent44274a1c09ff36ff0ab97f96b7d168fa6154a637 (diff)
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'kachelmann/conditions.pl')
-rwxr-xr-xkachelmann/conditions.pl4
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\"");