linux系统中如何查看history操作时间
来源:爱站网时间:2019-06-04编辑:网友分享
你知道linux系统中如何查看history操作时间?要在linux操作系统中查看history记录的操作时间我们应该怎么办呢?现在没玩就按照下面的步骤一起操作吧。
你知道linux系统中如何查看history操作时间?要在linux操作系统中查看history记录的操作时间我们应该怎么办呢?现在没玩就按照下面的步骤一起操作吧。
1,修改/etc/profile文件,在末尾添加:export histtimeformat=”%f %t `whoami` ”
2,或在用户目录下,修改文件 .bash_profile,添加export histtimeformat=”%f %t `whoami` ”
退出终端,重新登录。
例,查看history操作时间:
复制代码
代码如下:[root@jb51 ~]$ history | tail
989 2013-06-24 19:06:04 admin vi .bash_profile
990 2013-06-24 22:06:03 admin ll
991 2013-06-24 22:06:09 admin vi .bash_profile
992 2013-06-24 22:06:18 admin ll -ag
993 2013-06-24 22:06:55 admin history | tail
994 2013-06-24 22:07:11 admin vi .bash_profile
995 2013-06-24 22:07:24 admin history | tail
996 2013-06-24 22:07:32 admin eixt
997 2013-06-24 22:07:35 admin exit
998 2013-06-24 22:07:41 admin history | tail
linux系统中如何查看history操作时间?这里分享下具体的实现方法,有需要的朋友可以参考下。
上一篇:如何获取Linux命令帮助
下一篇:linux修改ssh端口的方法