From 4636861f6bf175c2b647053f82954bcd590df272 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 17 Dec 2016 16:17:38 -0500 Subject: [PATCH] nicer versions include history size --- feisty_inits/dot.bashrc-normal-user | 16 ++++++++-------- feisty_inits/dot.bashrc-root | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/feisty_inits/dot.bashrc-normal-user b/feisty_inits/dot.bashrc-normal-user index ea0c9c5e..74a77747 100644 --- a/feisty_inits/dot.bashrc-normal-user +++ b/feisty_inits/dot.bashrc-normal-user @@ -4,20 +4,20 @@ ############## -# If not running interactively, don't do anything -case $- in - *i*) ;; - *) return;; -esac - -############## - # drag in the default version of this file. this may not be needed if your # .bashrc script already has substantial code or already does this. source /etc/bash.bashrc ############## +# set the history sizes to be much larger, and do this whether we load the +# feisty meow environment or not. + +export HISTSIZE=1000000 +export HISTFILESIZE=8000000 + +############## + # change this to your name... export NAME='Frunkooleon Q. GrendervaspPleaseChangeThis' diff --git a/feisty_inits/dot.bashrc-root b/feisty_inits/dot.bashrc-root index 8ae38a5a..205e6a13 100644 --- a/feisty_inits/dot.bashrc-root +++ b/feisty_inits/dot.bashrc-root @@ -4,20 +4,20 @@ ############## -# If not running interactively, don't do anything -case $- in - *i*) ;; - *) return;; -esac - -############## - # drag in the default version of this file. this may not be needed if your # .bashrc script already has substantial code or already does this. source /etc/bash.bashrc ############## +# set the history sizes to be much larger, and do this whether we load the +# feisty meow environment or not. + +export HISTSIZE=1000000 +export HISTFILESIZE=8000000 + +############## + # change this to your name... export NAME='Frunkooleon Q. GrendervaspPleaseChangeThis' -- 2.34.1