Perl CGI setting headers
#!/usr/bin/perl -wT
use strict;
use warnings;
use CGI qw(:standard);
print header('text/plain', '404 Not Found');
print "Move along, nothing to see here\n";
At promp, execute: curl -i url-to-script
which returns:
HTTP/1.1 404 Not Found
Date: Fri, 04 Oct 2013 14:14:58 GMT
Server: Apache
Vary: Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/plain; charset=ISO-8859-1
Move along, nothing to see here
From JR's : articles
59 words - 454 chars
created on
- #
source
- versions
Related articles
Perl try, catch, eval, die, warn, carp - Jun 25, 2013
Scaup web publishing app update as of Feb 21, 2015 - Mar 02, 2015
Loop through a Perl array - Oct 02, 2013
Perl Critic and Diag - Oct 09, 2013
Perl links to read - Jul 09, 2013
more >>