临时设置
在CentOS上使用history查看历史使用的CMD记录时,发现没有时间,在当前用户的.bash_profile
里面,添加
export HISTTIMEFORMAT="%F %T `whoami` "
永久设置
也可直接写到/etc/profile
永久生效。
echo 'HISTTIMEFORMAT="%F %T "' >> /etc/profile
然后执行source .bash_profile
即可。
在CentOS上使用history查看历史使用的CMD记录时,发现没有时间,在当前用户的.bash_profile
里面,添加
export HISTTIMEFORMAT="%F %T `whoami` "
也可直接写到/etc/profile
永久生效。
echo 'HISTTIMEFORMAT="%F %T "' >> /etc/profile
然后执行source .bash_profile
即可。