gpt4 book ai didi

shell - Unix将月份名称转换为数字

转载 作者:行者123 更新时间:2023-12-03 16:29:09 24 4
gpt4 key购买 nike

在 BASH shell 脚本或使用 gdate 中,给定日期如“2011 年 10 月”,我如何转换为年月数字格式?例如,输出应为“2011-10”。

最佳答案

mydate="Oct 2011"
date --date="$(printf "01 %s" $mydate)" +"%Y-%m"

GNU 日期的 parse_datetime 接口(interface)(这是示例所使用的)有很多规则。日期的 2011 年 10 月形式不是其中之一,因此您在其前面添加一个“01”并且日期喜欢它。

关于shell - Unix将月份名称转换为数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15252383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com