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
commit44274a1c09ff36ff0ab97f96b7d168fa6154a637 (patch)
treede47f7592e4129c9e9e6cfc62b665672b541cfb1 /kachelmann/conditions.pl
parent2703d8bce03216e97e3bb3bd975ed15a050cce84 (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\"");