• history命令显示时间


    1、将 HISTTIMEFORMAT 变量加到 .bashrc 或 .bash_profile或者全局/etc/profile 文件中,让它永久生效。

    # echo 'HISTTIMEFORMAT="%F %T "' >> ~/.bashrc
    或
    # echo 'HISTTIMEFORMAT="%F %T "' >> ~/.bash_profile
    # echo 'HISTTIMEFORMAT="%F %T "' >> /etc/profile
    

    2、运行下面命令来声明环境变量。

    # source ~/.bashrc
    或
    # source ~/.bash_profile
    或
    # source /etc/profile
    

     

    3、效果:

    [root@zabbix ~]# history 
    1 2020-11-02 14:08:01 ip a
    2 2020-11-02 14:08:01 ping baidu.com
    

      

  • 相关阅读:
    Linux
    Linux
    Linux
    Linux
    Linux
    shell tr命令
    grep 正则表达
    shell 运算符
    shell 重定向
    bzoj 1026 DP,数位统计
  • 原文地址:https://www.cnblogs.com/lichenghong/p/13914182.html
Copyright © 2020-2023  润新知