ユーザ用ツール

サイト用ツール


サイドバー

このページの翻訳:



最近の更新



Tag Cloud

02_freebsd:99_その他:dateコマンドでunixtime変換

dateコマンドでunixtime変換

日付 から unixtime への変換方法

現在の日付をunixtimeへ変換

$ date +%s
1392854748

特定の日付をunixtimeへ変換

$ date +%s --date "2011-01-01 00:00"
1293807600

unixtime から 日付 への変換方法

普通に変換

$ date --date "@1392854748"
Thu Feb 20 09:05:48 JST 2014

形式を指定して変換

$ date +%Y%m%d-%H%M%S --date "@1392854748"
20140220-090548
02_freebsd/99_その他/dateコマンドでunixtime変換.txt · 最終更新: 2014/02/20 09:12 by matsui