'2025/04/10'에 해당되는 글 1건

  1. 2025.04.10 리눅스 linux history 에 날짜 및 시간 남기기
카테고리 없음2025. 4. 10. 09:27

###### ~/.bashrc 파일에  export HISTTIMEFORMAT="%F %T "  추가 

 

 

 

# cat ~/.bashrc
# .bashrc

# User specific aliases and functions

alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

export HISTFILE=~/.bash_history
export HISTSIZE=1000
export HISTFILESIZE=2000
export HISTTIMEFORMAT="%F %T "

 

 

 

결과 

Posted by 배움나눔