본문 바로가기

리눅스

history 명령어 실행 시간 보기(history HISTTIMEFORMAT)

반응형

history 명령어 실행 시간 보기(history HISTTIMEFORMAT)

history HISTTIMEFORMAT 환경 변수 설정

export HISTTIMEFORMAT='%Y-%m-%d %H:%M:%S '
$ history
  328  2012-03-11 07:45:48 vi /etc/profile
  329  2012-03-11 07:45:55 source /etc/profile
  330  2012-03-11 07:45:57 history

history unset (HISTTIMEFORMAT)

unset HISTTIMEFORMAT
$ history
   66  exit
   67  ls
   68  history

profile(/etc/profile)에 환경 변수 등록

vim /etc/profile
### history
HISTTIMEFORMAT='%Y-%m-%d %H:%M:%S '
export HISTTIMEFORMAT
source /etc/profile

 

728x90
반응형