linux shell date

linux shell date

概述

用shell命令获取给定时区的今天凌晨的时间戳

# 取得纽约时区的日期(年-月-日)
today='TZ="America/New_York" date +%Y-%m-%d'
# "${today} 00:00" 的格式是 年-月-日 时:分
# +%s 参数是取时间戳
tsToday=$(TZ="America/New_York" date -d "${today} 00:00" +%s)
echo ${tsToday}

访问: