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