aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-09-26 21:12:23 -0700
committerJakob Odersky <jakob@odersky.com>2018-09-26 21:12:23 -0700
commit13e13d9cea89f29ee3a6a87159e6a915bf550de8 (patch)
tree6948aa2639606c52ba1436cc72f336c8de3bce0f
parentf584e14d8741e3ff0a70a8c1d3e4af9c3f3c7abe (diff)
downloaddotfiles-13e13d9cea89f29ee3a6a87159e6a915bf550de8.tar.gz
dotfiles-13e13d9cea89f29ee3a6a87159e6a915bf550de8.tar.bz2
dotfiles-13e13d9cea89f29ee3a6a87159e6a915bf550de8.zip
Set bash history size limit
-rw-r--r--home/.bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/.bashrc b/home/.bashrc
index a328f87..74d632c 100644
--- a/home/.bashrc
+++ b/home/.bashrc
@@ -16,8 +16,8 @@ HISTCONTROL=ignoreboth
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
-HISTSIZE=
-HISTFILESIZE=
+HISTSIZE=100000
+HISTFILESIZE=100000
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.