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