linux-history显示历史命令执行时间

vim  ~/.bashrc 或者 ~/.bash_profile  

增加:export HISTTIMEFORMAT="%F %T  "  

一次会话的话先执行

export HISTTIMEFORMAT="%F %T  "  

然后使用history 命令就行了

history 500|grep get_charge_by_month  

1002  2014-09-02 10:17:34  history -500|grep get_charge_by_month  

1005  2014-09-02 10:26:41  history 500|grep get_charge_by_month  

原文地址:https://www.cnblogs.com/python-cat/p/8462376.html