如何输出日期为10-Dec-15?

时间:2015-12-10 07:23:34

标签: shell

NOW=$(date +"%Y-%m-%d")  #displayed as 2015-12-10
DAY=$(date +"%d-%b-%Y")  #displayed as 10-Dec-2015
DAY1=$(date +"%d-%b")    #displayed as 10-Dec

如何将日期输出为10-Dec-15?

1 个答案:

答案 0 :(得分:2)

使用较小的y表示短年,而Y表示较长的一年。

DAY=$(date +"%d-%b-%y")