使用`history`可以输出你曾经输入过的历史命令。例如
[root@server ~]# history | more ls cd vi test.sh
但是这里只显示了命令,没有显示执行命令的时间。
因为保存历史命令的`~/.bash_history`文件里并没有保存时间。
加时间戳方法:
echo 'export HISTTIMEFORMAT="%F %T `whoami` "' >> /etc/profile
然后`source`一下就可以了
source /etc/profile