I\'m working on a Perl program at work and stuck on (what I think is) a trivial problem. I simply need to build a string in the format \'06/13/2012\' (always 10 characters,
use Time::Piece; ... my $t = localtime; print $t->mdy("/");# 02/29/2000