Linux 历史命令操作教程

简介

Linux 使用 history 命令记录命令历史记录并将其存储在文件 (~/.bash_history~/.zsh_history) 中。可以使用不同的方法配置和操作历史记录。

常用操作

查看所有命令

shell 复制代码
history

# 这将显示所有先前执行的命令以及行号

显示最新10条命令

shell 复制代码
history 10

搜索命令历史

shell 复制代码
history | grep "keyword"

示例:

shell 复制代码
history | grep ls

使用反向搜索(CTRL + R

  • CTRL + R 并开始输入部分命令

  • 继续按 CTRL + R 循环搜索命令

  • Enter 键执行选定的命令

执行历史记录中的命令

shell 复制代码
!<command_number>

示例:执行历史记录中第100号命令

shell 复制代码
!100

重新运行最后一个命令

shell 复制代码
!!

运行以特定单词开头的最后一个命令

shell 复制代码
!ls

清除当前会话历史记录

shell 复制代码
history -c

删除指定命令

shell 复制代码
history -d <command_number>

示例:

shell 复制代码
history -d 50

# 删除编号50的命令

永久清除历史记录

shell 复制代码
> ~/.bash_history

或

cat /dev/null > ~/.bash_history

变更历史文件位置

修改 HISTFILE 变量

shell 复制代码
export HISTFILE=~/.my_custom_history

设置存储命令的数量

shell 复制代码
export HISTSIZE=1000   # 内存中存储的命令数
export HISTFILESIZE=2000  # 历史文件中存储的命令数

忽略特定命令

shell 复制代码
export HISTIGNORE="ls:pwd:exit"

# 列出的命令将不会保存在历史记录中

忽略重复项

shell 复制代码
export HISTCONTROL=ignoredups

忽略重复的命令和前导空格

shell 复制代码
export HISTCONTROL=ignoreboth

实时将所有命令记录到文件中

shell 复制代码
export PROMPT_COMMAND='history -a'

# 这会将每个命令立即附加到历史记录中

保存时间戳在历史记录中

shell 复制代码
export HISTTIMEFORMAT="%F %T "

现在历史记录将显示:

shell 复制代码
  1  2024-03-31 10:15:30  ls
  2  2024-03-31 10:15:35  cd /home

防止其他用户查看你的历史记录

shell 复制代码
chmod 600 ~/.bash_history

在不同的 Shell 中查看历史记录

  • Bashhistory, ~/.bash_history

  • Zshhistory, ~/.zsh_history

  • Fishhistory, ~/.local/share/fish/fish_history

相关推荐
别退8 分钟前
fmriprep安装与试用_附ubuntu分区大小调整
linux·运维·ubuntu
段嘉许OvO17 分钟前
jangow-01-1.0.1靶机攻略
linux·运维·服务器
光电的一只菜鸡23 分钟前
linux shell从入门到精通(二)——变量操作
linux·运维·chrome
程思扬26 分钟前
无界设计新生态:Penpot开源平台与cpolar的云端协同创新实践
大数据·linux·服务器·前端·经验分享·ubuntu·开源
大白菜132429 分钟前
Linux的基本操作以及文件的权限
linux·运维·服务器
是阿建吖!1 小时前
【Linux | 网络】传输层(UDP和TCP) - 两万字详细讲解!!
linux·网络·udp·tcp
Java初学者小白1 小时前
秋招Day21 - Linux
java·linux·运维·服务器
lemoncat81 小时前
在Windows下读写Linux EXT文件系统文件
linux·运维·windows
努力的小T1 小时前
MBR和GPT分区的区别
linux·运维·服务器·gpt·云计算
你想考研啊1 小时前
进程管理(systemd)
linux·运维·服务器