annotate scripts/pjx_NO_CACHE_callee.pl @ 9:9652dc713ba6 boosterpack

working on adding to rlmcintyre.com
author Robert McIntyre <rlm@mit.edu>
date Sat, 26 Jun 2010 20:06:08 -0400
parents 477258d09353
children
rev   line source
robert@0 1 #!C:/strawberry/perl/bin/perl.exe
robert@0 2
robert@0 3 use strict;
robert@0 4 use CGI;
robert@0 5
robert@0 6 my $q = new CGI;
robert@0 7 print $q->header();
robert@0 8
robert@0 9 my ($sec,$min,$hour,$mday,$mon,$year,$wday,
robert@0 10 $yday,$isdst)=localtime(time);
robert@0 11
robert@0 12 printf "%4d-%02d-%02d %02d:%02d:%02d\n",
robert@0 13 $year+1900,$mon+1,$mday,$hour,$min,$sec;