linux history 增加时间戳

为了方便查看脚本使用记录,为 history 增加 时间戳。

vi /etc/profile

在最底端,增加下面两行代码:

export HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " 
export HISTSIZE=2000

"%Y-%m-%d %H:%M:%S " 等价于 "%F %T "

保存完毕后,使用下面的方式,使之快速生效:

source /etc/profile

你可能感兴趣的:(Linux,linux,history,时间戳,时间)