summaryrefslogtreecommitdiff
path: root/scripts/getquote
blob: 8daf6633b61bb5403fc66c47c4028a799c37b35b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use Finance::Quote;

$q = Finance::Quote->new;
$q->timeout(60);
$q->require_labels(qw/price/);

%quotes = $q->fetch("nasdaq", $ARGV[0]);
if ($quotes{$ARGV[0], "price"}) {
    print "\$", $quotes{$ARGV[0], "price"}, "\n";
} else {
    exit 1;
}