From 20ec9302fee8c775f20f3226c5cbb666347764ae Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Mon, 31 May 2010 15:39:20 -0700 Subject: [PATCH] handle multiline hist/core dump size --- bash/options | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bash/options b/bash/options index ba7d186..278f8e1 100755 --- a/bash/options +++ b/bash/options @@ -6,6 +6,9 @@ export HISTSIZE=1000 # ignore both duplicates and whitespace in history export HISTCONTROL=ignoreboth +# save multiline history as one entry +shopt -s cmdhist + # append to the history file, don't overwrite it shopt -s histappend @@ -14,3 +17,8 @@ shopt -s histappend # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. shopt -s checkwinsize + +# extended globing enabled +shopt -s extglob + +ulimit -c 0