linux ubuntu查看执行的命令历史记录 history
linux ubuntu查看执行的命令历史记录 history
设置显示的格式、行数:
$ nano /etc/profile
加入
HISTTIMEFORMAT="%F %T `whoami` " # prefix of output
HISTSIZE=5000 # lines num in output of history command
HISTFILESIZE=5000 # lines num in .bash_history file
# 生效
$ source /etc/profile
设置生效后只以今天的时间日期显以,以前命令记录时间会以当前设置的时间日期为准。