From 0689c9c0ce952c7b5612d796928ddc622d41c6c7 Mon Sep 17 00:00:00 2001 From: David Alexander Majnemer Date: Wed, 14 Jan 2009 22:12:55 -0500 Subject: [PATCH] add support for a HISTSIZE in bash --- bash/options | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bash/options b/bash/options index 941de9c..a675b4d 100755 --- a/bash/options +++ b/bash/options @@ -1,6 +1,8 @@ # put history in .bash export HISTFILE="${HOME}/.bash/.history" +export HISTSIZE=1000 + # don't put duplicate lines in the history. See bash(1) for more options # don't overwrite GNU Midnight Commander's setting of `ignorespace'. export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups