linux查看历史操作记录并且显示执行时间
时间:2019-03-14 15:55:04
收藏:0
阅读:577
vim ~/.bashrc 或者 ~/.bash_profile
增加: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/wang-yaz/p/10530590.html
评论(0)