dotfiles/bash/rc.d/005-history.sh
2022-05-07 23:08:30 -07:00

8 lines
211 B
Bash
Executable File

# Bash History
shopt -s histappend
export HISTSIZE=100000
export HISTFILESIZE=10000000
export HISTCONTROL=ignoreboth
export PROMPT_COMMAND="history -a; history -n"
export HISTIGNORE="ls:ll:cd:pwd:bg:fg:history"