my $todayDate = system qq(date) #### The current date is: 11/11/2009 Enter the new date: (mm-dd-yy) $todayDate #### my($sec,$min,$hr,$day,$month,$yr) = (localtime())[0..5]; #### my($sec,$min,$hr,$day,$month,$yr) = (gmtime())[0..5];
## The current date is: 11/11/2009 Enter the new date: (mm-dd-yy) $todayDate ##
## my($sec,$min,$hr,$day,$month,$yr) = (localtime())[0..5]; ##
## my($sec,$min,$hr,$day,$month,$yr) = (gmtime())[0..5];