dotfiles/bash/.bashrc.d/.Trash/v1/.bashrc_-_history
2023-10-25 19:00:04 +02:00

9 lines
336 B
Plaintext
Executable File

HISTCONTROL=erasedups # remove duplicates
shopt -s histappend # append to the history file, don't overwrite it
shopt -s lithist # save multiline commands with embeded newlines
HISTSIZE=1000
HISTFILESIZE=2000
HISTTIMEFORMAT='%y/%m/%d %T: '
HISTFILE="${MM}/Bash/History/.bash_history"
PROMPT_COMMAND="\history -a;$PROMPT_COMMAND"