web-dev-qa-db-ja.com

コマンドが実行された時刻を確認するにはどうすればよいですか?

historyコマンドを実行すると、最近実行されたコマンドのリストが表示されます。これらの特定のコマンドが実行された時刻を確認できる規定はありますか?

8
Mandar Shinde

HISTTIMEFORMAT env変数を設定する必要があります。

help historyから:

If the $HISTTIMEFORMAT variable is set and not null, its value is used
as a format string for strftime(3) to print the time stamp associated
with each displayed history entry.  No time stamps are printed otherwise.

形式は strftimeマンページ で説明されています。

here および here を参照してください。最も便利なのはおそらく

$ export HISTTIMEFORMAT='%F %T '
$ history|tail -2
501  2014-11-03 20:51:41 export HISTTIMEFORMAT='%F %T '
502  2014-11-03 20:51:44 history
14
damienfrancois