关于 UNIX 可变日期格式

发布于 2024-09-24 09:48:48 字数 192 浏览 8 评论 0原文

我有一个日期值存储在 Unix KornShell (ksh) 脚本变量中:

VALUE="2010_09_23"

我想将其更改为“2010 年 9 月 23 日”并将其存储在 VALUE1 中。我该怎么做?

VALUE1="23-Sep-2010"

I have a date value stored in a Unix KornShell (ksh) script variable:

VALUE="2010_09_23"

I want to change it to "23-Sep-2010" and store it in VALUE1. How can i do it?

VALUE1="23-Sep-2010"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

指尖微凉心微凉 2024-10-01 09:48:48

Ksh 通过内置的 printf 具有内置的日期格式化功能。文档并不清楚参数应该如何格式化;以下内容在我的 ksh 93s+ 中有效:

VALUE1=$(printf "%(%02d-%b-%Y)T\n" "${VALUE//_/-}")

Ksh has a built-in date formatting capability through the printf builtin. The documentation isn't clear about how the argument should be formatted; the following works in my ksh 93s+:

VALUE1=$(printf "%(%02d-%b-%Y)T\n" "${VALUE//_/-}")
北城挽邺 2024-10-01 09:48:48

使用可移植的 awk 和硬编码的月份名称列表。 substr 调用解决了一个棘手的问题,即在某些 awk 实现中对数字“08”和“09”的解释:它们是十进制数字“8”和“ 9' 或无效的八进制数?

echo "$VALUE" | awk -F'_' '
    BEGIN {
        OFS="-"
        split("Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec", m)
    }
    {
        $2 = 10 * substr($2, 1, 1) + substr($2, 2, 1)
        print $3, m[$2], $1
    }'

Using portable awk and a hardcoded list of month names. The substr calls work around a tricky issue is the interpretation of the numbers '08' and '09' in some awk implementations: Are they the decimal numbers '8' and '9' or invalid octal numbers?

echo "$VALUE" | awk -F'_' '
    BEGIN {
        OFS="-"
        split("Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec", m)
    }
    {
        $2 = 10 * substr($2, 1, 1) + substr($2, 2, 1)
        print $3, m[$2], $1
    }'
牵你手 2024-10-01 09:48:48
VALUE="2010_09_23"
VALUE1="$( gawk -v date="$VALUE" 'BEGIN {
    gsub(/_/, " ", date)
    print strftime("%d-%b-%Y", mktime(date " 00 00 00"))
}')"
VALUE="2010_09_23"
VALUE1="$( gawk -v date="$VALUE" 'BEGIN {
    gsub(/_/, " ", date)
    print strftime("%d-%b-%Y", mktime(date " 00 00 00"))
}')"
明月夜 2024-10-01 09:48:48

使用 Perl:

echo 2010_09_23 |  perl '-MPOSIX qw(strftime)'  -le'
    @dt = split /_/,<STDIN>;
    print strftime( "%d-%b-%Y",0,0,0,$dt[2],$dt[1]-1,$dt[0]-1900);
  '

输出:

23-Sep-2010

Using Perl:

echo 2010_09_23 |  perl '-MPOSIX qw(strftime)'  -le'
    @dt = split /_/,<STDIN>;
    print strftime( "%d-%b-%Y",0,0,0,$dt[2],$dt[1]-1,$dt[0]-1900);
  '

Output:

23-Sep-2010
2024-10-01 09:48:48

此命令在 OSX 上执行您想要的操作:

VALUE1=$(date -j -f %Y_%m_%d +%d-%b-%Y "$VALUE")

如果您使用不同的 Unix 变体,您需要的 date 选项组合可能会有所不同。 % 表示法已得到很好的标准化(请参阅 man strftime),但 date 命令的功能却并非如此。

GNU coreutils date (你在 Linux 上得到的东西,也可能隐藏在你的“SunOS”系统的某个地方(我怀疑你实际上是指“SunOS”,Sun Microsystems 还没有大约十五年来都没有这样称呼它的 Unix 变体,但即便如此,/usr/bin 中的东西仍然是令人难以置信的过时垃圾)——查看 /usr/local > 和 /opt 的所有子目录 - 也可以执行此操作,但您必须预处理输入:

VALUE1=$(date -d $(echo $VALUE | tr _ -) +%d-%b-%Y)

可能也可以工作,具体取决于您拥有的 shell:

VALUE1=$(date -d ${VALUE//_/-} +%d-%b-%Y)

This command does what you want on OSX:

VALUE1=$(date -j -f %Y_%m_%d +%d-%b-%Y "$VALUE")

If you are using a different Unix variant, the combination of options to date that you require may be different. The %-notation is well standardized (see man strftime) but the capabilities of the date command are not.

GNU coreutils date (what you get on Linux, and which may also be hiding somewhere on your "SunOS" system (I doubt you actually mean "SunOS", Sun Microsystems hasn't called its Unix variant that for about fifteen years, but even so, the stuff in /usr/bin is still incredibly obsolete junk) -- look in /usr/local and all subdirectories of /opt -- can also do this but you have to preprocess the input:

VALUE1=$(date -d $(echo $VALUE | tr _ -) +%d-%b-%Y)

This may also work, depending on exactly which shell you have:

VALUE1=$(date -d ${VALUE//_/-} +%d-%b-%Y)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文