package Book::DumpEnv; use strict; use Apache::Constants qw(:common); sub handler { shift->send_http_header('text/plain'); print map {"$_ => $ENV{$_}\n"} keys %ENV; return OK; } 1;