小编典典

linux bash-以自定义格式解析日期

linux

我的日期%c格式 (可以是其他任何 格式
,我需要在date命令中使用它。%c不是美国格式。它是德语服务器,因为它是德语服务器。这在美国服务器上也无法正常工作。(语言环境设置为德语或美国)

这不起作用(包括错误):

user@server:~$ NOW=$(date +%c); echo $NOW
Do 19 Dez 2013 22:33:28 CET
user@server:~$ date --date="$NOW" +%d/%m/%Y
date: ungültiges Datum „Do 19 Dez 2013 22:33:28 CET“

(日期:ungültigesDatum„ Do 19 Dez 2013 22:33:28 CET“ =date: invalid date „Do 19 Dez 2013 22:33:28 CET“

困难在于我不知道以后将使用哪种语言环境,甚至不知道日期格式,因为用户可以设置自己的格式。因此,一个简单的特定解析解决方案就无法真正起作用!

但是我该怎么办呢?

概括问题:

如果我有一种日期格式format1 (可以是任意 日期 ,也可以是至少一种可以反转的 日期
,则可以使用date获得格式化日期。但是,如果我想将其格式化为另一个日期(format2),该怎么做?
使用除coreutils之外的任何方法的解决方案都是毫无意义的,因为我试图为尽可能多的unix机器开发bash脚本。

DATE=$(date "+$format1")

date --date="$DATE" "+$format2" # Error in most cases!

这是必需的,因为我有一个用户可以指定日期格式的命令。该日期字符串将被显示。但是在下一步中,我需要将此日期字符串转换为另一个固定的日期字符串。我可以操纵命令将获得的格式,也可以操纵输出
(或用户将看到的内容)
我不能两次运行该命令,因为它非常耗时。


更新:

我发现了类似的解决方案:

# Modify $user_format so it can be parsed later
user_format="$user_format %s"

# Time consuming command which will print a date in the given format
output=$(time_consuming_command params "$user_format" more params)

# This will only display what $user_format used to be
echo ${output% *}

# A simple unix timestamp parsing ("${output##* }" will only return the timestamp)
new_formated_date=$(date -d "1970-01-01 ${output##* } sec UTC" "+$new_format")

这是可行的,可能对其他人有帮助。因此,我将与您分享。


阅读 346

收藏
2020-06-03

共1个答案

小编典典

为什么不将时间存储为unixtime(即自1970年1月1日以来的毫秒数),如1388198714

试图将世界各地的所有日期格式解析为一击式bash脚本而没有合理依赖的要求,这有点荒谬。

2020-06-03