bash: Increase history size

This commit is contained in:
Meutel 2016-04-27 18:19:18 +02:00
parent 71443941b4
commit 8a35172c71

View File

@ -9,6 +9,10 @@
export HISTCONTROL=ignoredups export HISTCONTROL=ignoredups
# ... and ignore same sucessive entries. # ... and ignore same sucessive entries.
export HISTCONTROL=ignoreboth export HISTCONTROL=ignoreboth
# size
export HISTSIZE=10000
export HISTFILESIZE=100000
# check the window size after each command and, if necessary, # check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS. # update the values of LINES and COLUMNS.