使用HISTTIMEFORMAT变量来指定命令中增加时间戳
[root@localhost ~]# export HISTTIMEFORMAT="%F %T "
# #注意: 在调用history命令时,行号 然后是HISTTIMEFORMAT的执行结果,然后是命令,注意%T后面有空格。
想要记录是哪个IP操作的,对HISTTIMEFORMAT变量进行改造
[root@testvm01 ~]# export HISTTIMEFORMAT="%F %T `who am i` "
#在后面,增加who am i的执行,就是哪个ip,哪个用户登录的
可以将这个变量加入到/etc/profile全局变量设置中,就对所有的会话都生效了
[root@testvm01 ~]# tail /etc/profile
else
. "$i" >/dev/null 2>&1
fi
fi
done
unset i
unset -f pathmunge
export HISTTIMEFORMAT="%F %T `who am i` "