doc/en/cgi/man-wrapper.cgi
Peter Wemm 01a61279be $Id$,$Date$ -> $FreeBSD$
The jury is out on $Date$, but it's presently not being expanded..
1999-09-06 07:03:31 +00:00

18 lines
352 B
Perl
Executable file

#!/usr/bin/perl
# Copyright (c) Wolfram Schneider, Berlin. Sep 1997.
#
# redirect FreeBSD man script
#
# $FreeBSD$
exec('/usr/local/www/bsddoc/bin/man.cgi');
$_ = $ENV{'QUERY_STRING'};
$_ = '?' . $_ if $_;
print "Window-target: _top\n";
print "Location: http://www.de.freebsd.org/de/cgi/man.cgi$_\n";
print "Content-type: text/plain\n\n";
exit 0;