On Wed, Feb 20, 2002 at 10:00:23AM +0530, kavitha malar wrote: > I want to write a perl script which should go and download some > stock details from one site .
Have a look at Finance::Quote on http://finance-quote.sourceforge.net/documentation.html > For that i should install LWP module You know, with perl there's always more than one way to get the job done. Even without it. If you don't need to extract quotes, you could just use wget instead of perl... > From where i can install LWP module for unix . On common linux distributions it's automatically installed with perl. So better check if you don't already have it first. type 'perl -e "use HTTP::Request" && echo is installed' (without the single quotes). If you don't have it, either - have it loaded by CPAN: type "perl -MCPAN -e shell" and follow the instructions, or - install it as package for your unix distributon (that's an .rpm-file, for example) -- Johannes Franken Professional unix/network development mailto:[EMAIL PROTECTED] http://www.jfranken.de/
