rm -f .bash_history
vim ~/.bash_profile
add the following:
----
export HISTFILESIZE=4
unset HISTFILE=5
# Change this to a reasonable number of lines to save, I like to save only 100.
export HISTSIZE=1
# Ignores duplicate lines next to each other
export HISTCONTROL=ignoredups
------