From ec8106c7f50cdb5bd90fe443acf9a6e8e33e99ce Mon Sep 17 00:00:00 2001 From: pvincent Date: Wed, 2 Oct 2019 21:12:59 +0400 Subject: [PATCH] history grows up to 10_000 --- bash.bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash.bashrc b/bash.bashrc index ff3567e..ffd599b 100644 --- a/bash.bashrc +++ b/bash.bashrc @@ -13,8 +13,8 @@ HISTCONTROL=ignoreboth shopt -s histappend # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) -HISTSIZE=1000 -HISTFILESIZE=2000 +HISTSIZE=10000 +HISTFILESIZE=20000 # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS.