My Learning Journey
  • My Learning Journey
  • Timeline
    • 2024
      • August
        • August 08, 2024
        • August 09, 2024
        • August 10, 2024
        • August 11, 2024
        • August 12, 2024
        • August 19, 2024
      • November
        • November 26, 2024
      • December
        • December 13, 2024
        • December 21, 2024
Powered by GitBook
On this page
  • Things That I Discovered
  • 1. Running a job in container on GitHub Actions
  • 2. Set Unlimited Bash History
  1. Timeline
  2. 2024
  3. August

August 12, 2024

PreviousAugust 11, 2024NextAugust 19, 2024

Last updated 9 months ago

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 .

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:

here
bash - Linux Manpages Online