From 8a35172c7101eeb4f36914654f745f138457df15 Mon Sep 17 00:00:00 2001 From: Meutel Date: Wed, 27 Apr 2016 18:19:18 +0200 Subject: [PATCH] bash: Increase history size --- _bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_bashrc b/_bashrc index 03731ff..e8f1f9f 100644 --- a/_bashrc +++ b/_bashrc @@ -9,6 +9,10 @@ export HISTCONTROL=ignoredups # ... and ignore same sucessive entries. export HISTCONTROL=ignoreboth +# size +export HISTSIZE=10000 +export HISTFILESIZE=100000 + # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS.