dotfiles/bash/rc.d/005-history.sh

8 lines
211 B
Bash
Raw Normal View History

2022-05-08 02:08:30 -04:00
# 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"