I want to download a page, and want to save it in an array to parse it
later on,
I did
#usr/local/bin/perl
my @list;
$URL1= "http://blablabla";
$command="/opt/sfw/bin/wget -nv -O @list $URL1";
system "$command";
print @list;
it didn;t work. But if I say
$command="/opt/sfw/bin/wget -nv -O list $URL1";
it works, but it saved the downloaded file into a file named "list" in
the current directory.
How do I save a file to an local variable?
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]