28 Feb 2011
Linux时间戳转换
获取N天后的时间
date -d “32 days” +%s
获取N天前的时间
date -d “32 days ago” +%s
将时间戳转换成人眼可识别的形式
date -d ‘1970-01-01 UTC 1123495443 seconds’
在Ruby下将时间戳转换
Time.at(1123495443).strftime(“%Y-%m-%d”)
输出格式可以自定义 http://www.ruby-doc.org/core/classes/Time.html#M000392