bash的字符串到日期(bash string to date)

2019-07-31 19:43发布

是否有一个字符串转换成在bash约会的机会? 例如:我有一个时间格式: "%Y-%m-%dS%H:%M:%S" 这种串的一个例子是"2009-06-24S12:34:56" 。 我需要把这个字符串在bash转换成日期(UNIX时间戳)。 我怎样才能做到这一点?

Answer 1:

使用

date --utc --date "<input string>" +%s


文章来源: bash string to date