Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 bash 文件脚本,我需要获取纪元时间并将 bash 文件中的变量设置为纪元时间,以便稍后在某些代码中将其作为字符串插入......
我知道 :
date +%s
给了我纪元时间,但我尝试了以下方法,但似乎没有一个工作......
epochTime=(date +%s) epochTime=date +%s epochTime="date +%s"
非常感谢,我确定有办法,我对 bash 文件还是有点陌生
你要:
epochTime=$(date +%s)
或者在sh- 兼容的语法中:
sh
epochTime=`date +%s`
手册页详细描述了这种bash行为。
bash