Help for this page

Select Code to Download


  1. or download this
    sub do_download {
            my $self = shift;
    ...
            close(READ);
            return "@fcontent";
    }
    
  2. or download this
    Content-Disposition: attachment; filename="blahblah2123.zip"
    content-length: 139124
    Content-Type: application/octet-stream
    
    PK {rest of zip file}
    
  3. or download this
    my $filecat = `cat /blah/blah/whatever`;
    return $filecat;