in reply to Re: Date formatsin thread Date formats
#!/usr/bin/perl -wT use strict; use Time::Piece; my $t = localtime; my $date = sprintf("%02d/%02d",$t->mon,$t->mday); print "$date\n"; [download]
-Blake