Bash History Configuration
This file installs an extended Bash history profile snippet by placing extended_history.sh into /etc/profile.d/extended_history.sh with root ownership and executable permissions (0755).
HISTTIMEFORMAT="%d/%m/%y %T "
shopt -s histappend
#PROMPT_COMMAND="history -a;$PROMPT_COMMAND"
HISTFILE=~/.bash_history
HISTSIZE=10000
HISTFILESIZE=999999
HISTIGNORE=
HISTCONTROL=
readonly HISTFILE
readonly HISTSIZE
readonly HISTFILESIZE
readonly HISTIGNORE
readonly HISTCONTROL
export HISTFILE HISTSIZE HISTFILESIZE HISTIGNORE HISTCONTROL