设置查看执行命令的具体时间

 默认history 命令无法查看命令执行的具体时间,现在需要达到效果如下:

 

  545  2016-03-16 11:38:34  history
  546  2016-03-16 11:39:00  vi /etc/profile
  547  2016-03-16 11:40:24  source /etc/profile
  548  2016-03-16 11:40:28  history
  549  2016-03-16 11:40:48  vi /etc/profile
  550  2016-03-16 11:41:03  source /etc/profile
  551  2016-03-16 11:41:05  history

修改方法:

vi /etc/profile

在末尾加上:

export HISTTIMEFORMAT='%F %T  '  住院留空格不要挤在一起。

保存后 source /etc/profile 生效

你可能感兴趣的:(profile,history,source,Export)