simple/ts/ts.pl

9 lines
145 B
Perl
Raw Normal View History

#!@@@perl@@@ -wT
2003-06-13 04:11:16 +02:00
use strict;
use POSIX;
while (<>) {
chomp;
my $now = strftime('%Y-%m-%dT%H:%M:%S', localtime);
2003-06-13 04:11:16 +02:00
print "$now $_\n";
}