浏览代码

Keep timestamp in Bash history

Alois Mahdal 7 年前
父节点
当前提交
c7d437ded5
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1
    0
      dotfiles/bash/main.bashrc

+ 1
- 0
dotfiles/bash/main.bashrc 查看文件

414
 HISTIGNORE="$HISTIGNORE:se *:sc *"
414
 HISTIGNORE="$HISTIGNORE:se *:sc *"
415
 HISTSIZE=-1
415
 HISTSIZE=-1
416
 HISTFILESIZE=100000
416
 HISTFILESIZE=100000
417
+HISTTIMEFORMAT='%F %T '
417
 GLOBIGNORE=.:..
418
 GLOBIGNORE=.:..
418
 shopt -s histverify
419
 shopt -s histverify
419
 
420