From c49aca504236ea4dce8aeb10381b2209cfeb2e8f Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Mon, 29 Feb 2016 14:05:23 -0800 Subject: [PATCH] Update bash history to be unlimited --- bash/environment | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/environment b/bash/environment index bf137e8..a89816d 100644 --- a/bash/environment +++ b/bash/environment @@ -17,9 +17,9 @@ HISTCONTROL=ignoredups:ignorespace # append to the history file, don't overwrite it shopt -s histappend -# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) -HISTSIZE=100000 -HISTFILESIZE=200000 +# Use empty string for unlimited history +HISTSIZE= +HISTFILESIZE= # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS.