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

$timeout = 60;

use Finance::Quote;

$q = Finance::Quote->new;
$q->timeout($timeout);
$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;
}