|
|
|
|
|
by mic47
2296 days ago
|
|
If you want to have just persistent histry (really simple), you can use vanilla bash history something like.
export HISTCONTROL=ignorespace
shopt -s histappend
export HISTSIZE=99999999 # Big enough number to never rotate history (or when you really don't care)
export HISTFILESIZE=99999999
shopt -s checkwinsize
export HISTTIMEFORMAT='%F %T ' |
|