Date
如何從觸摸格式的文件或目錄中獲取時間戳?
根據我在網上找到的許多網站,
touch
命令的-t
參數接受以下格式的時間戳:[[CC]YY]MMDDhhmm[.ss] Here, CC: The first two digits of the year. YY: The last two digits of the year. MM: Month DD: Day of the month hh: Hour mm: Minute ss: Seconds
例如:
$ touch -t 199901011200 test.txt
我可以使用
date
orstat
命令從文件或目錄中獲取相同格式的時間戳嗎?相同的格式是指上面的格式[[CC]YY]MMDDhhmm[.ss]
預設情況下,該date
命令具有不同的輸出。注意:我不想使用觸摸參考
-r
命令。
使用
date
您指定以下格式:date -r test.txt +'%Y%m%d%H%M.%S'
%Y
: 年(四位數)%m
: 月數(兩位數)%d
: 日(兩位數)%H
: 小時(從 00 到 23)%M
: 分鐘%S
: 秒您可以查看
man date
更多資訊。