> For the complete documentation index, see [llms.txt](https://my-learning-journey.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://my-learning-journey.devjugal.com/content/2024/august/day-12.md).

# August 12, 2024

## Things That I Discovered

### 1. Running a job in container on GitHub Actions

* Recently, I had to run a job on GitHub Actions in a container, ended up writing a TIL for that [here](https://gitbook.devjugal.com/til/github/actions/running-jobs-in-a-container).

### 2. Set Unlimited Bash History

* Unlimited Bash history? Well, why not? Sometimes, I find myself scratching my head trying to find a command that I had run a long time ago!
* We need to set `HISTSIZE` & `HISTFILESIZE` variables of Bash to `-1`.
* To make it permanent for an user, we can set `HISTSIZE` & `HISTFILESIZE` variables in `~/.bashrc` file.
* **Reference**: [bash - Linux Manpages Online](https://man.cx/bash)
