Help for this page

Select Code to Download


  1. 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.
    
  2. or download this
        my($uri, $fnamej, $rest) = split " ", $spec;
        length($rest) and die "invalid spec (too many words, line $.): $sp
    +ec";
    
  3. or download this
        $spec=~s/\s+$//;
        my ($uri,$fnamej)=split /\s+/,$spec,2;