yadm-new/.bashrc.d/history

12 lines
301 B
Text
Raw Normal View History

2024-10-23 00:19:57 -04:00
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000