Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "$ss $min $hh $dd $mm $yyyy\n";
    __END__
    10 13 08 12 04 2005
    
  2. or download this
    use POSIX;
    my $time_string = strftime '%S %M %H %d %m %Y', ( localtime )[ 0..5 ];
    print "$time_string\n";
    __END__
    10 13 08 12 04 2005