# script to place inside /etc/profile.d/custom.sh to incease HISTORY buffer (for better command logging) and set timeout for session to 300 secs
#
TMOUT=300

readonly TMOUT
export TMOUT

export HISTSIZE=2000
export HISTFILESIZE=20000

export HISTTIMEFORMAT='%F %T '

