history配置
/etc/profile配置文件中,末尾增加如下参数项:
HFILE=`who -m | awk '{print $1}'`
readonly HISTFILE=/var/history/$HFILE-$USER-$UID.log
readonly HISTFILESIZE=50000
readonly HISTSIZE=10000
readonly HISTTIMEFORMAT='%F %T '
readonly HISTCONTROL=ignoredups
shopt -s histappend
readonly PROMPT_COMMAND="history -a"