Re: Simple LWP web retrieval question

2002-03-15 Thread Elaine -HFB- Ashton
siren jones [[EMAIL PROTECTED]] quoth: *>I tried the following code to retrieve netCDF data files from a website. *> *>use LWP::Simple *> getstore("source_url"/", "input_filename"); perl -MLWP::Simple -e 'getstore "http://www.cpan.org","foo";' works like a charm. However, yours, with the addit

Simple LWP web retrieval question

2002-03-15 Thread siren jones
I tried the following code to retrieve netCDF data files from a website. use LWP::Simple getstore("source_url"/", "input_filename"); The problem is when I go to read the netCDF file I can't. It is as if it does an ASCII transfer instead of a binary or some such thing? Don't really know.