Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    print "Content-Disposition: attachment; filename=big-test.csv\n\n";
    print "Test,One,Two,Three\n";
    exit;
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    print "Content-type: application/octet-stream\n\n";
    print "Test,One,Two,Three\n";
    exit;