--- embedaddon/lighttpd/tests/docroot/www/send404.pl 2013/10/14 10:32:47 1.1.1.1 +++ embedaddon/lighttpd/tests/docroot/www/send404.pl 2016/11/02 10:35:00 1.1.1.2 @@ -1,5 +1,6 @@ -#!/usr/bin/perl -use CGI qw/:standard/; -print header ( -status => 404 - -type => 'text/plain' ); -print ("send404\n"); +#!/usr/bin/env perl + +print "Status: 404\n", + "Content-Type: text/plain\n", + "\n", + "send404\n";