9 lines
336 B
Plaintext
Executable File
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"
|