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 | 5a42d539fe819832fccb82eee25abbfdd8beed3c (patch) | |
tree | afc2e145e6bd33f78889b6687ff18f5b0b860417 /kachelmann | |
parent | 5f9b776d9d56390b030e1f49a44b6fa4cd370f8d (diff) | |
parent | 6cbc3fc61e739c8c7a6bd362cdef76003817b3c4 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'kachelmann')
-rw-r--r-- | kachelmann/Makefile | 5 | ||||
-rwxr-xr-x | kachelmann/conditions.pl | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/kachelmann/Makefile b/kachelmann/Makefile new file mode 100644 index 00000000..277a5421 --- /dev/null +++ b/kachelmann/Makefile @@ -0,0 +1,5 @@ +.PHONY: infect +INSTALL_DIR = /root/bin +infect: + mkdir -p /tmp/kachelmann/ + cp kachelmann ${INSTALL_DIR} 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\""); |