history命令查看操作时间

来源:互联网 发布:产品在淘宝没有展现 编辑:程序博客网 时间:2024/05/31 18:58
  1. export HISTTIMEFORMAT="%F %T `whoami` " 给history加上时间戳  
  2.   
  3. 展示:
  4.  1013  2016-08-08 12:15:40 root y
     1014  2016-08-08 12:15:41 root df
     1015  2016-08-08 12:16:00 root history
     1016  2016-08-08 12:17:13 root export HISTTIMEFORMAT="%F %T `whoami` "
     1017  2016-08-08 12:17:14 root history
     1018  2016-08-08 12:17:24 root df
     1019  2016-08-08 12:17:26 root history
     1020  2016-08-08 12:17:54 root echo 
     1021  2016-08-08 12:17:59 root source /etc/profile
     1022  2016-08-08 12:18:01 root history

  5. 加入配置的话使用 echo 'export HISTTIMEFORMAT="%F %T `whoami` "' >> /etc/profile 
  6. 再  source /etc/profile 即可

0 0