Set Unlimited Bash History
Sometimes, having limited Bash history isn't enough, and so we can just it unlimited!
Setting HISTSIZE & HISTFILESIZE in ~/.bashrc File
~/.bashrc FileWe can set HISTSIZE & HISTFILESIZE variables of Bash to -1 in ~/.bashrc file -
HISTSIZE=-1
HISTFILESIZE=-1Source: Baeldung Linux
Last updated