Fix bash history

put in .bashrc or bash.bashrc.local

# fix bash history
export HISTCONTROL=ignoredups:erasedups  # no duplicate entries
export HISTSIZE=100000                   # big big history
export HISTFILESIZE=100000               # big big history
shopt -s histappend                      # append to history, don't overwrite it

# Save and reload the history after each command finishes
export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
# end fix bash

Revision #3
Created 2026-04-13 18:05:49 CEST by Philip
Updated 2026-04-13 19:29:34 CEST by Philip