aboutsummaryrefslogtreecommitdiff
path: root/snips/bash_history
blob: a2dfbe769202a271fa28e88602326c46745b61eb (plain) (blame)
1
2
3
4
5
6
7
if [ -n "$BASH" ] ; then
	HISTFILE="$HOME/.bash_history"
	HISTSIZE=10000
	HISTFILESIZE=10000
	shopt -s histappend
	export PROMPT_COMMAND="set_my_title;history -a; history -c; history -r"
fi