孤独小松鼠

文章
3
资源
0
加入时间
2年10月17天

用shell将时间字符串与时间戳互转

用shell将时间字符串与时间戳互转 date +%s   可以得到UNIX的时间戳;用shell将时间字符串与时间戳互转:      date -d "2010-10-18 00:00:00" +%s         输出形如:1287331200而时间戳转换为字符串可以这样做:      date -d @1287331200  "+%Y-%m-%d"    输出形如: