#!/usr/bin/perl -w use CGI qw(:all) ; my $today; my $thismonth; my $thisyear; chomp($today = `date +"%-d"`); chomp($thismonth = `date +"%-m"`); chomp($thisyear = `date +"%Y"`); $cgi = CGI->new; print $cgi->header,$cgi->start_html("$today.$thismonth.$thisyear"); print<