ubuntu獲取時間戳的方法:
1.打開終端命令行模式。
2.直接執行“date”命令進行獲取。
#用法
date [OPTION]... [+FORMAT]
date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]
#示例
[admin@localhost testing]$ date
Mon Mar 27 17 :50:39 PDT 2017
相關命令:
date指定格式顯示時間。
[admin@localhost testing]$ date +%Y-%m-%d
2020-02-20
[admin@localhost testing]$ date +%Y:%m:%d
2020 :02:20
[admin@localhost testing]$