From dff85c66886b501215ea26d362d337cc0b8b249f Mon Sep 17 00:00:00 2001 From: Darren 'Tadgy' Austin Date: Sun, 1 Oct 2023 22:30:09 +0100 Subject: [PATCH] Set HISTSIZE to prevent issue on Darwin. --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index d85b310..522a590 100644 --- a/.bashrc +++ b/.bashrc @@ -377,7 +377,7 @@ HISTCONTROL="ignoredups" HISTFILE="$HOME/.bash_history-${HOSTNAME%%.*}" HISTFILESIZE=1000000 HISTIGNORE="bg:bg *:fg:fg *:jobs:exit:clear:history" -HISTSIZE=-1 +HISTSIZE=1000000 HISTTIMEFORMAT="%d/%m/%y %H:%M:%S " history -r