- or download this
=item B<-i> I<listfile>
Gives a file that lists the URLs to download and filenames to save
it: each line has a HTTP URL and a filename separated by whitespace.
The filename cannot contain whitespace.
- or download this
my($uri, $fnamej, $rest) = split " ", $spec;
length($rest) and die "invalid spec (too many words, line $.): $sp
+ec";
- or download this
$spec=~s/\s+$//;
my ($uri,$fnamej)=split /\s+/,$spec,2;