diff options
author | adamstuck <adam.moloney.stuck@gmail.com> | 2021-12-05 13:27:39 +0100 |
---|---|---|
committer | adamstuck <adam.moloney.stuck@gmail.com> | 2021-12-05 13:27:39 +0100 |
commit | 66b147d8ba0492dea435142de820a627e20a2101 (patch) | |
tree | 90c530a1b0eef07bce6e9956e4513d66f063057e | |
parent | d6be8c60a519d079fe995a4f518864338b318245 (diff) |
Bash increase history length + ignore duplicates
-rw-r--r-- | .bashrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ # If not running interactively, don't do anything [[ $- != *i* ]] && return -HISTCONTROL=ignoreboth +HISTCONTROL=ignoreboth:erasedups HISTSIZE=1000 -HISTFILESIZE=2000 +HISTFILESIZE=5000 shopt -s histappend shopt -s checkwinsize |