diff options
author | John Wiegley <johnw@newartisans.com> | 2004-07-29 17:25:28 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-07-29 17:25:28 -0400 |
commit | abae9138e9b7746a23d66d56673e10343a9cec11 (patch) | |
tree | 69d2275d589618f266ad7ed5a5d182171fe49d28 /scripts/getquote | |
parent | 358e3329b3b981bcd7ddf8a03192dec9378fbcab (diff) | |
download | fork-ledger-abae9138e9b7746a23d66d56673e10343a9cec11.tar.gz fork-ledger-abae9138e9b7746a23d66d56673e10343a9cec11.tar.bz2 fork-ledger-abae9138e9b7746a23d66d56673e10343a9cec11.zip |
added missing files
Diffstat (limited to 'scripts/getquote')
-rwxr-xr-x | scripts/getquote | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/getquote b/scripts/getquote new file mode 100755 index 00000000..cf8c8abd --- /dev/null +++ b/scripts/getquote @@ -0,0 +1,16 @@ +#!/usr/bin/perl + +exit 0 if $ARGV[0] eq "\$"; + +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"; +} |