linux中怎么让history命令显示日期和时间

2023-04-12 08:14:00 日期 命令 时间

在linux中,可以使用history命令来查看历史命令。如果想让history命令显示日期和时间,可以在 ~/.bash_profile 文件中添加如下内容:

export HISTTIMEFORMAT="%F %T "

然后使用 source ~/.bash_profile 命令来使修改生效。

之后再使用 history 命令就可以看到日期和时间了。

相关文章