瀏覽代碼

Make ts output iso8601 timestamps.

cray
Mitch Tishmack 11 年之前
父節點
當前提交
490cd8997a
共有 1 個檔案被更改,包括 11 行新增4 行删除
  1. +11
    -4
      common/bin/ts

+ 11
- 4
common/bin/ts 查看文件

@@ -2,11 +2,18 @@
#
# Timestamp stdin and then print to stdout and flush.
#
# Thats about it. Might add a quick and dirty option to allow you to
# Thats about it. Might add a quick and dirty option to allow you to
# specify the time output whatnot. But this is intended to be simple.
#
use strict;
use warnings;
use POSIX qw(strftime);
use IO::Handle;
STDOUT->autoflush(1);

while(<STDIN>){
print localtime()." : ".$_;
$stdout.flush;
my $now = time;
my $tz = strftime(('%z', (localtime $now)));
$tz =~ s/(\d{2})(\d{2})/$1:$2/smx;
my $time = strftime('%Y-%m-%dT%H:%M:%S', (localtime $now));
print "$time$tz : ".$_;
};

Loading…
取消
儲存