7 lines
229 B
Bash
7 lines
229 B
Bash
|
# don't put duplicate lines or lines starting with space in the history.
|
||
|
# See bash(1) for more options
|
||
|
HISTCONTROL=ignoreboth
|
||
|
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
||
|
HISTSIZE=1000
|
||
|
HISTFILESIZE=2000
|