dmesg 的时间戳处理

dmesg_with_human_timestamps () {
    $(type -P dmesg) "$@" | perl -w -e 'use strict;
        my ($uptime) = do { local @ARGV="/proc/uptime";<>}; ($uptime) = ($uptime =~ /^(\d+)\./);
        foreach my $line (<>) {
            printf( ($line=~/^\[\s*(\d+)\.\d+\](.+)/) ? ( "[%s]%s\n", scalar localtime(time - $uptime + $1), $2 ) : $line )
        }'
}
alias dmesg=dmesg_with_human_timestamps

http://stackoverflow.com/questions/13890789/convert-dmesg-timestamp-to-custom-date-format
posted on 2016-09-09 16:44  阿笨猫  阅读(2607)  评论(0编辑  收藏  举报