Example 19-5. os_snipe
#!/usr/bin/perl
# os_snipe - redirect to a Jargon File entry about current OS
$dir = 'http://www.wins.uva.nl/%7Emes/jargon';
for ($ENV{HTTP_USER_AGENT}) {
$page = /Mac/ && 'm/Macintrash.html'
|| /Win(dows )?NT/ && 'e/evilandrude.html'
|| /Win|MSIE|WebTV/ && 'm/MicroslothWindows.html'
|| /Linux/ && 'l/Linux.html'
|| /HP-UX/ && 'h/HP-SUX.html'
|| /SunOS/ && 's/ScumOS.html'
|| 'a/AppendixB.html';
}
print "Location: $dir/$page\n\n";
The os_snipe program uses dynamic redirection
because you don't always send every user to the same place. If you
did, it would usually make more sense to arrange for a static
redirect line in the server's configuration file, since that would be
more efficient than running a CGI script for each redirection.
Telling the client's browser that you don't plan to produce any
output is not the same as redirecting nowhere:
use CGI qw(:standard);
print header( -STATUS => '204 No response' );
That produces this:
Status: 204 No response
Content-Type: text/html
<<blank line here>>
Use this, for instance, when the user submits a form request but you
don't want their page to change or even update.
It may seem silly to provide a content type and then no content, but
that's what the module does. If you were hand-coding this, the
content type wouldn't be required, but the blank line still would be.
#!/bin/sh
cat <<EOCAT
Status: 204 No response
EOCAT