diff options
author | root <root@krebs> | 2011-08-06 00:36:40 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-08-06 00:36:40 +0200 |
commit | 2432589707a1153c14de4d43533a1a3bc31dbc9e (patch) | |
tree | 3625bd621af4b4613d7af31038cf771ee1daa7a1 /kachelmann/conditions.pl | |
parent | 6f683003c47c43c8842c071f81898c36ff348ce0 (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-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\""); |