linux查看历史命令-LMLPHP

linux查看历史命令

Linux中,bash输入的历史记录,会存在.bash_history文件中。 history 命令主要用于显示历史指令记录内容, 下达历史纪录中的指令 。

使用:首先打开Terminal(终端);然后输入history,敲回车;屏幕将展示1000条历史命令。

推荐:【Linux视频教程】

命令语法:

history [n]
history [-c]
history [-raw] histfiles
登录后复制

参数:

n  :数字,要列出最近的 n 笔命令列表
-c :将目前的shell中的所有 history 内容全部消除
-a :将目前新增的history 指令新增入 histfiles 中,若没有加 histfiles,则预设写入 ~/.bash_history
-r :将 histfiles 的内容读到目前这个 shell 的 history 记忆中
-w :将目前的 history 记忆内容写入 histfiles。
登录后复制

常用命令:

history N 显示最近的N条命令,例如history 5 
history -d N 删除第N条命令,这个N就是前面的编号,例如history -d 990 
history -c 清空命令历史 
history -a 将当前会话中的命令历史写入指定文件 

echo $HISTFILE 使用此命令查看环境变量
# echo $HISTFILE 
/root/.bash_history

echo $HISTFILESIZE 查看最大保存数目 

export HISTTIMEFORMAT=’%F %T ’ 让history可以有时间戳显示
登录后复制

以上就是linux查看历史命令的详细内容,更多请关注Work网其它相关文章!

09-07 08:30