Table of Contents
History#
For multiple Bash sessions not clobbering your command history, use this:
shopt -s histappend
To prevent duplicates in your history:
export HISTCONTROL=ignoredups
Shell.Bash
For multiple Bash sessions not clobbering your command history, use this:
shopt -s histappend
To prevent duplicates in your history:
export HISTCONTROL=ignoredups