我尝试在我的bash shell脚本中使用$(date),但是,我想要YYYY-MM-DD格式的日期。 我怎么得到这个?
当前回答
#!/bin/bash -e
x='2018-01-18 10:00:00'
a=$(date -d "$x")
b=$(date -d "$a 10 min" "+%Y-%m-%d %H:%M:%S")
c=$(date -d "$b 10 min" "+%Y-%m-%d %H:%M:%S")
#date -d "$a 30 min" "+%Y-%m-%d %H:%M:%S"
echo Entered Date is $x
echo Second Date is $b
echo Third Date is $c
这里x是使用的示例日期&然后示例显示数据格式以及获得日期比当前日期多10分钟。
其他回答
尝试:$(日期+%F)
%F选项是%Y-%m-%d的别名
尝试下面的代码来获得一个简单的人类可读的时间戳:
dt=$(date)
echo $dt
输出:
Tue May 3 08:48:47 IST 2022
我使用下面的方法。谢谢所有的方法/回答
ubuntu@apj:/tmp$ datevar=$(date +'%Y-%m-%d : %H-%M')
ubuntu@apj:/tmp$ echo $datevar
2022-03-31 : 10-48
在bash(>=4.2)中,最好使用printf的内置日期格式化程序(bash的一部分)而不是外部日期(通常是GNU日期)。
是这样的:
# put current date as yyyy-mm-dd in $date
# -1 -> explicit current date, bash >=4.3 defaults to current time if not provided
# -2 -> start time for shell
printf -v date '%(%Y-%m-%d)T\n' -1
# put current date as yyyy-mm-dd HH:MM:SS in $date
printf -v date '%(%Y-%m-%d %H:%M:%S)T\n' -1
# to print directly remove -v flag, as such:
printf '%(%Y-%m-%d)T\n' -1
# -> current date printed to terminal
在bash(<4.2)中:
# put current date as yyyy-mm-dd in $date
date=$(date '+%Y-%m-%d')
# put current date as yyyy-mm-dd HH:MM:SS in $date
date=$(date '+%Y-%m-%d %H:%M:%S')
# print current date directly
echo $(date '+%Y-%m-%d')
其他可用的日期格式可以从日期手册页查看(用于外部非bash特定的命令):
man date
我用美元(日期+ Y“% - % - % d”)或美元(日期+ Y“% - % - % d % T”)与时间和小时。