#!/usr/bin/perl use strict; use CGI; use Data::Dumper 'Dumper'; my $c = new CGI; print $c->header, $c->start_html, "

The script name is $0

", '
',
    Dumper( \%ENV ),
    '
',$c->end_html;