我经常发现自己需要从一种types的时间转换到另一种时间,而且还没有find我一贯满意的方式。 每当我做一个快速的谷歌search,我想出了不同的(有时是痛苦的复杂)的答案。
我很高兴
date -d "Sep 5 1986" "+%s"
将标准date转换为时代,但是我似乎无法做出相反的工作(而且我浏览的手册页也没有什么帮助。)
date -d "526276800" "+%m/%d/%y"
在我的RHEL 5安装上产生一个错误。
社区能否提供一些轻松转换的策略? 我将采取一切forms:awk,perl,date。 每种方法的优缺点是什么?
date -d @ 526276800“+%m /%d /%y”
在我的Mac OS X机器上,我使用:
date -r 526276800 +%m/%d/%y
使用GNUdate:
date -d'1970-01-01 946684800秒'
或者在Ruby中:
% ruby -e 'puts Time.now.to_f' 1243620267.8988 % ruby -e 'puts Time.now.to_i' 1243620267 % ruby -e 'puts Time.at 1243620270' Fri May 29 11:04:30 -0700 2009 % ruby -e 'puts Time.at(1243620270).strftime "at %I:%M%p"' at 11:04AM
这里是strftime
格式,取自ruby的Time
类文档:
%a - The abbreviated weekday name (``Sun'') %A - The full weekday name (``Sunday'') %b - The abbreviated month name (``Jan'') %B - The full month name (``January'') %c - The preferred local date and time representation %d - Day of the month (01..31) %H - Hour of the day, 24-hour clock (00..23) %I - Hour of the day, 12-hour clock (01..12) %j - Day of the year (001..366) %m - Month of the year (01..12) %M - Minute of the hour (00..59) %p - Meridian indicator (``AM'' or ``PM'') %S - Second of the minute (00..60) %U - Week number of the current year, starting with the first Sunday as the first day of the first week (00..53) %W - Week number of the current year, starting with the first Monday as the first day of the first week (00..53) %w - Day of the week (Sunday is 0, 0..6) %x - Preferred representation for the date alone, no time %X - Preferred representation for the time alone, no date %y - Year without a century (00..99) %Y - Year with century %Z - Time zone name %% - Literal ``%'' character
$ perl -le 'print scalar localtime 1243620900' Fri May 29 11:15:00 2009
这可能有点沉重,但是在perl中有一个叫做DateTime的模块,可以在各种date和时间格式之间来回切换,包括时代。 使用非常简单:
就我个人而言,我可以select使用Python和bash。 但是,既然你对它感到恼火;-)我会去制作一个以date作为参数的小脚本,并写下它,以便拥有–2epoch和–2normal选项。
这样,你可以从时代转换到正常
./script.sh --2normal 1243609635
和其他方式
./script --2epoch "20090529 17:07"
inputdate的格式是否相同? 这将使脚本更容易编写。
Perl一行:
$ perl -MDate :: Manip -le'print UnixDate(ParseDateString(“epoch”.shift()),“%c”)'946684800
从纪念碑(第一个例子)或参考(第二个例子)转储时代的时间戳到可读的forms,不要忘记strftime的力量!
perl -pe '$_=~s/(\d{10})/scalar localtime($1)/eg'
perl -e '$s=join(" ",@ARGV);$s=~s/(\d{10})/scalar localtime($1)/eg;print"$s\n"'
perl -pe 'use POSIX qw(strftime);s/(\d{10,10})/strftime("%Y%m%d-%H:%M:%S",$1)/eg'
如果您为perl安装了Date :: Manip模块(通常默认情况下为ISNT),则可以使用:
perl -MDate::Manip -e '$stamp=UnixDate(ParseDate(join(" ",@ARGV)),"%s");printf"%d %s\n",$stamp,scalar localtime($stamp)' sep 9 2006
有时很难决定是否要在“filter”中replace时间戳,或者如果要在发现时间戳的前面添加时间戳。 我翻转那一个。