=item B<-i> I 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. #### my($uri, $fnamej, $rest) = split " ", $spec; length($rest) and die "invalid spec (too many words, line $.): $spec"; #### $spec=~s/\s+$//; my ($uri,$fnamej)=split /\s+/,$spec,2;