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

相关推荐
轻松Ai享生活6 小时前
5 节课深入学习Linux Cgroups
linux
christine-rr7 小时前
linux常用命令(4)——压缩命令
linux·服务器·redis
三坛海会大神5557 小时前
LVS与Keepalived详解(二)LVS负载均衡实现实操
linux·负载均衡·lvs
東雪蓮☆7 小时前
深入理解 LVS-DR 模式与 Keepalived 高可用集群
linux·运维·服务器·lvs
乌萨奇也要立志学C++8 小时前
【Linux】进程概念(二):进程查看与 fork 初探
linux·运维·服务器
獭.獭.9 小时前
Linux -- 信号【上】
linux·运维·服务器
hashiqimiya9 小时前
centos配置环境变量jdk
linux·运维·centos
hashiqimiya9 小时前
权限更改centos中系统文件无法创建文件夹,使用命令让普通用户具备操作文件夹
linux
逆小舟13 小时前
【Linux】人事档案——用户及组管理
linux·c++
青草地溪水旁13 小时前
pthread_mutex_lock函数深度解析
linux·多线程·pthread