Mercurial > rlmcintyre
comparison BoosterPack/scripts/.svn/text-base/pjx_NO_CACHE_callee.pl.svn-base @ 0:0d795f02a8bb tip
initial committ. what was I thinking?
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 27 Sep 2010 16:57:26 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0d795f02a8bb |
---|---|
1 #!C:/strawberry/perl/bin/perl.exe | |
2 | |
3 use strict; | |
4 use CGI; | |
5 | |
6 my $q = new CGI; | |
7 print $q->header(); | |
8 | |
9 my ($sec,$min,$hour,$mday,$mon,$year,$wday, | |
10 $yday,$isdst)=localtime(time); | |
11 | |
12 printf "%4d-%02d-%02d %02d:%02d:%02d\n", | |
13 $year+1900,$mon+1,$mday,$hour,$min,$sec; |