명령 실행 시간을 확인하는 방법은 무엇입니까?

명령 실행 시간을 확인하는 방법은 무엇입니까?

명령을 실행하면 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

관련 정보