summaryrefslogtreecommitdiffstats
path: root/bin/update-weather
blob: e5dd5a2323691598617deba8fab829165f86c611 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env perl
use strict;
use warnings;

use Path::Class;

if (my $weather = `weather`) {
    file("$ENV{HOME}/.weather")->openw->print($weather);
}