명령을 실행하면 history
최근에 실행한 명령 목록이 표시됩니다. 이러한 특정 명령이 실행되는 시기를 확인할 수 있는 조항이 있습니까?
답변1
HISTTIMEFORMAT
환경변수를 설정해야 합니다 .
에서 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 맨페이지.
$ 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