HN user

xegroeg

5 karma
Posts0
Comments2
View on HN
No posts found.
Zsh is your friend. 14 years ago

Bash can also do shared history:

  export HISTCONTROL=ignoredups
  export HISTCONTROL=ignoreboth
  HISTSIZE=50000
  shopt -s histappend
  PROMPT_COMMAND='history -a'
  #history search inline
  #bind '"\e[A": history-search-backward'
  #bind '"\e[B": history-search-forward'