码迷,mamicode.com
首页 > 系统相关 > 详细

让linux的history命令显示操作时间

时间:2015-12-14 19:27:18      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:让linux的history命令显示操作时间

很多人都会用到history这个命令,这个命令的意思就是列出来当前用户的所有操作(默认如此),但是很多发行版的默认的history是没有用户和操作时间的,这个对于需要查看原来的操作内容的时候就提供了麻烦,man 了下history,发现有个变量是可以设定history这个显示格式的,这个变量就是HISTTIMEFORMAT

只要执行下面命令:

export HISTTIMEFORMAT="`whoami` : |  %F  | %T: | "

然后就可以看到带有用户和时间的history了,把这个保存到当前用户的.bash_profile里面,就可以开机自动加载了
下面的是显示效果:

  330  root : |  2012-08-24  | 17:47:12: | yum search nfs
  331  root : |  2012-08-24  | 17:47:12: | yum install nfs4-acl-tools
  332  root : |  2012-08-24  | 17:47:12: | nfsiostat 
  333  root : |  2012-08-24  | 17:47:12: | nfs4_editfacl 
  334  root : |  2012-08-24  | 17:47:12: | nfs4_editfacl --help
  335  root : |  2012-08-24  | 17:47:12: | man nfs4_editfacl
  336  root : |  2012-08-24  | 17:47:12: | nfs4_getfacl 
  337  root : |  2012-08-24  | 17:47:12: | nfs4_getfacl -h
  338  root : |  2012-08-24  | 17:47:12: | nfs4_getfacl -H
  339  root : |  2012-08-24  | 17:47:12: | nfs4_getfacl -H
  340  root : |  2012-08-24  | 17:47:12: | ls
  341  root : |  2012-08-24  | 17:47:12: | ifconfig

还不错吧

本文出自 “boyhack” 博客,请务必保留此出处http://461205160.blog.51cto.com/274918/1722781

让linux的history命令显示操作时间

标签:让linux的history命令显示操作时间

原文地址:http://461205160.blog.51cto.com/274918/1722781

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!