Answers:
将以下行添加到〜/ .bashrc
export HISTCONTROL=ignorespace
然后source ~/.bashrc
刷新设置
这应该在bash中启用该功能。如果它不起作用,则可能必须将其添加到〜/ .bash_profile而不是〜/ .bashrc中,因为OS X加载它们的方式与我认为的linux有所不同。
export HISTCONTROL=erasedups,ignorespace
但是我认为语法不起作用...
export HISTCONTROL=erasedups:ignorespace
export HISTCONTROL=ignoredups:ignorespace