Current Path :
/
etc
/
profile.d
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//etc/profile.d/history.sh
# Managed by Salt # how many lines to keep in the history FILE export HISTFILESIZE=500000 # how many lines to keep in memory for this SESSION export HISTSIZE=10000 # add a timestamp to log entries HISTTIMEFORMAT="(%m/%d/%y) %T " export HISTTIMEFORMAT # append the history for all terminals shopt -s histappend # append history and refresh terminal title (T3O2-15766) before each prompt export PROMPT_COMMAND='history -a; printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'