summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions.pl
diff options
context:
space:
mode:
authorroot <root@krebs>2011-08-06 00:36:40 +0200
committerroot <root@krebs>2011-08-06 00:36:40 +0200
commit2432589707a1153c14de4d43533a1a3bc31dbc9e (patch)
tree3625bd621af4b4613d7af31038cf771ee1daa7a1 /kachelmann/conditions.pl
parent6f683003c47c43c8842c071f81898c36ff348ce0 (diff)
Changed kachelmann to write its XML file to /tmp/kachelmann/weather.xml
Deleted Weather.xml Added a Makefile
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\"");