> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/bash/set-unlimited-bash-history.md).

# 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

We can set `HISTSIZE` & `HISTFILESIZE` variables of Bash to `-1` in `~/.bashrc` file -

```code
HISTSIZE=-1
HISTFILESIZE=-1
```

***Source:*** [***Baeldung Linux***](https://www.baeldung.com/linux/bash-configure-unlimited-history)
