history命令显示执行时间--CentOS6.3

来源:互联网 发布:svd求逆矩阵 编辑:程序博客网 时间:2024/04/28 08:41

1.修改linux系统的环境变量文件,末尾添加如下:

[sysop@hn ~]$ tail -2  /etc/profile 
export HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S "
export HISTSIZE=9999
[sysop@hn ~]$ 


2.使环境变量生效(不报错表示添加正确):

[root@hn ~]# source /etc/profile
[root@hn ~]# 


3.验证:

[root@hn ~]# history |more
    5  2017-04-06 09:57:35 top
    6  2017-04-06 09:57:35 tailf /home/logs/catalina.out 
    7  2017-04-06 09:57:35 tailf /home/ROOT/WEB-INF/log/k.log
    8  2017-04-06 09:57:35 tailf /home/1/k.log
    9  2017-04-06 09:57:35 top
   10  2017-04-06 09:57:35 ps -ef |grep tom
   11  2017-04-06 09:57:35 cd /etc/init.d/
   12  2017-04-06 09:57:35 ls
   13  2017-04-06 09:57:35 ./tomapp restart
   14  2017-04-06 09:57:35 ps -ef |grep tom
   15  2017-04-06 09:57:35 /etc/init.d/zabbix-agent restart
   16  2017-04-06 09:57:35 ps -ef |grep tom

0 0