且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将日期时间字符串转换为Bash中的纪元

更新时间:2023-02-03 16:58:07

您正在寻找的是date --date='06/12/2012 07:21:22' +"%s".请记住,这假设您使用的是GNU coreutils,因为--date%s格式字符串都是GNU扩展. POSIX没有指定任何一个,因此即使在POSIX兼容的系统上也没有可移植的方式进行这种转换.

What you're looking for is date --date='06/12/2012 07:21:22' +"%s". Keep in mind that this assumes you're using GNU coreutils, as both --date and the %s format string are GNU extensions. POSIX doesn't specify either of those, so there is no portable way of making such conversion even on POSIX compliant systems.

请咨询其他版本的date的相应手册页.

Consult the appropriate manual page for other versions of date.

注意:bash --date-d选项要求使用美国或ISO8601格式的日期,即mm/dd/yyyyyyyy-mm-dd,而不是英国,欧盟或其他任何格式.

Note: bash --date and -d option expects the date in US or ISO8601 format, i.e. mm/dd/yyyy or yyyy-mm-dd, not in UK, EU, or any other format.