*** empty log message ***

This commit is contained in:
hjp 2003-06-13 02:11:16 +00:00
parent e85052e3d6
commit d79e2212ca
2 changed files with 14 additions and 0 deletions

8
ts/ts.pl Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/perl -wT
use strict;
use POSIX;
while (<>) {
chomp;
$now = strftime('%Y-%m-%dT%H:%M:%S', localtime);
print "$now $_\n";
}

6
ts/ts.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/sh
while read a
do
x=$(date '+%Y-%m-%dT%H:%M:%S')
echo "$x $a"
done