Skip to content

Instantly share code, notes, and snippets.

@bhandras
Created July 21, 2021 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhandras/fa386c7978a22176e3213a5d77f4884b to your computer and use it in GitHub Desktop.
Save bhandras/fa386c7978a22176e3213a5d77f4884b to your computer and use it in GitHub Desktop.
unlimited bash history
Add this to your `.bashrc`:
```
export HISTFILESIZE=
export HISTSIZE=
export HISTFILE=~/.history
export HISTTIMEFORMAT="[%F %T] "
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
export HISTCONTROL=ignoredups
# append to the history file, don't overwrite it
shopt -s histappend
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment