标签: 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?
答案 0 :(得分:2)
使用较小的y表示短年,而Y表示较长的一年。
y
Y
DAY=$(date +"%d-%b-%y")