Linux基础之history的详细说明

背景:history是Linux中常会用到内容,在工作中一些用户会突然发现其安装不了某个软件,于是寻求运维人员的帮助,而不给你说明他到底做了哪些坑爹的操作。此时你第一件要做的就是要查看其history命令历史。查看后兴许你就会发现他到底干了什么坑爹的操作。

history可以让你在一定情况下快速定位问题所在。

本文的history介绍及其实践都是来自CentOS7.2环境

[[email protected] ~]# cat /etc/redhat-release 
CentOS Linux release 7.2.1511 (Core)

  history的介绍

history是shell的内置命令,其内容在系统默认的shell的man手册中。

history是显示在终端输入并执行的过命令,系统默认保留1000条。

[[email protected] ~]# history
    1  ls
    2  vi /etc/sysconfig/network-scripts/ifcfg-eno16777728 
    3  service network restart
    4  ifconfig
    5  ping www.baidu.com
    6  systemctl disable firewalld.service 
    7  systemctl stop firewalld.service 
    8  exit
    9  ls
   10  type which
   11  which ls
   12  file /usr/bin/ls
   13  which clock
   14  file /usr/sbin/clock
   15  man which
   16  man what
   17  man who
   18  who
   19  man who
   20  man w
   21  man who
   22  who -q
   23  man w
   ...
   ..
   .

系统在关闭后会将现有history内容保存在文件~/.bash_history

  与history相关的环境变量

HISTFILE          指定存放历史文件位置,默认位置在~/.bash_profile(针对用户)、
      /etc/profile(针对全局,如果~/.bash_profile内没有相关环境变量内容则使用全局变量设置)
HISTFILESIZE      命令历史文件记录历史的条数
HISTSIZE          命令历史记录的条数,默认为1000
HISTTIMEFORMAT="%F %T"   显示命令发生的时间
HISTIGNORE="str1:str2:..." 忽略string1,string2历史
HISTCONTROL       包含一下4项,让哪一项生效只需要让其=下面一项即可
ignoredups:   忽略重复的命令;连续且相同方为“重复”
ignorespace:  忽略所有以空白开头的命令
ignoreboth:ignoredups,ignorespace
erasedups:    删除重复命令

让上述环境变量生效方式:

1、直接在当前shell内输入相关变量,比如我们不想留存命令历史,我们把HISTSIZE设置为0

[[email protected] ~]# HISTSIZE=0
[[email protected] ~]# history

经测试,成功。不过这种设置的局限性是其作用范围仅仅针对当前shell及其子shell,如果切换用户或登出再登入其设置失效。不过其特点是设置完立刻生效

下面通过实验说明这个问题

[[email protected] ~]# bash
[[email protected] ~]# history
[[email protected] ~]# history

以上结果说明在当前shell内设置history的环境变量后,其作用范围为当前shell及子shell

Last login: Fri Jul 29 17:26:41 2016 from 10.1.250.62
[[email protected] ~]# history
    1  history

重新登陆后原有的history环境变量失效

2、另一种让history环境变量生效的方式是修改~/.bash_profile文件

[[email protected] ~]# vi ~/.bash_profile 
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin
HISTTIMEFORMAT="%F %T "        此为新添加的history环境变量,我添加了发生命令操作的时间
export PATH

wq保存退出。

[[email protected] ~]# history            
    1  history
    2  ll
    3  cd
    4  hostory
    5  history
    6  vi ~/.bash_profile 
    7  history

由结果可知变量并没有生效,我们重新登录再尝试下。

[[email protected] ~]# history
    1  2016-07-29 20:00:29 history
    2  2016-07-29 20:00:29 ll
    3  2016-07-29 20:00:29 cd
    4  2016-07-29 20:00:29 hostory
    5  2016-07-29 20:00:29 history
    6  2016-07-29 20:00:29 vi ~/.bash_profile 
    7  2016-07-29 20:00:29 history
    8  2016-07-29 20:00:29 logout
    9  2016-07-29 20:00:33 history

通过上面的两个结果,我们可以发现第二种修改配置文件虽然也可以成功修改history环境变量但是其生效需要重新登陆,并不是改完就生效。但是它的特点是此修改始终有效,时效性为永久

  history命令的使用

-c: 清空命令历史

-d n: 删除历史中指定的命令,n表示命令号

#: 显示最近的#条历史

-a: 追加本次会话新执行的命令历史列表至历史文件,因为多终端所以如果想看当前都发生了什么操作就可以执行-a进行查看

-n: 读历史文件(本地数据)中未读过的行到历史列表(内存数据)

-r: 读历史文件(本地数据)附加到历史列表(内存数据)

-w: 保存历史列表(内存数据)到指定的历史文件(本地数据)

-s: 展开历史参数成一行,附加在历史列表后。用于伪造命令历史

下面来演示上面几种命令的使用

[[email protected] ~]# history
    1  2016-07-29 20:00:29 history
    2  2016-07-29 20:00:29 ll
    3  2016-07-29 20:00:29 cd
    4  2016-07-29 20:00:29 hostory
    5  2016-07-29 20:00:29 history
    6  2016-07-29 20:00:29 vi ~/.bash_profile 
    7  2016-07-29 20:00:29 history
    8  2016-07-29 20:00:29 logout
    9  2016-07-29 20:00:33 history
   10  2016-07-29 20:07:41  cd
   11  2016-07-29 20:07:44  ls
   12  2016-07-29 20:07:50  history
   13  2016-07-29 20:08:12 cat /etc/profile
   14  2016-07-29 20:12:10 HISTCONTROL=ignorespace
   15  2016-07-29 20:27:28 history -p
   16  2016-07-29 20:27:31 history
   17  2016-07-29 20:28:10 ls /etc
   18  2016-07-29 20:28:14 history
   19  2016-07-29 20:28:57 history

清空历史

[[email protected] ~]# history -c
[[email protected] ~]# history
    1  2016-07-29 20:29:26 history

从历史文件读取之前的命令历史

[[email protected] ~]# history -r 
[[email protected] ~]# history
    1  2016-07-29 20:29:26 history
    2  2016-07-29 20:30:59 history -r 
    3  2016-07-29 20:30:59 history
    4  2016-07-29 20:30:59 ll
    5  2016-07-29 20:30:59 cd
    6  2016-07-29 20:30:59 hostory
    7  2016-07-29 20:30:59 history
    8  2016-07-29 20:30:59 vi ~/.bash_profile 
    9  2016-07-29 20:30:59 history
   10  2016-07-29 20:30:59 logout
   11  2016-07-29 20:31:01 history

删除指定命令历史

[[email protected] ~]# history -d 4
[[email protected] ~]# history
    1  2016-07-29 20:29:26 history
    2  2016-07-29 20:30:59 history -r 
    3  2016-07-29 20:30:59 history
    4  2016-07-29 20:30:59 cd
    5  2016-07-29 20:30:59 hostory
    6  2016-07-29 20:30:59 history
    7  2016-07-29 20:30:59 vi ~/.bash_profile 
    8  2016-07-29 20:30:59 history
    9  2016-07-29 20:30:59 logout
   10  2016-07-29 20:31:01 history
   11  2016-07-29 20:32:50 history -d 4
   12  2016-07-29 20:32:52 history

伪造历史命令

[[email protected] ~]# history -s rm -rf /*  做下恶作剧
[[email protected] ~]# history
    1  2016-07-29 20:29:26 history
    2  2016-07-29 20:30:59 history -r 
    3  2016-07-29 20:30:59 history
    4  2016-07-29 20:30:59 cd
    5  2016-07-29 20:30:59 hostory
    6  2016-07-29 20:30:59 history
    7  2016-07-29 20:30:59 vi ~/.bash_profile 
    8  2016-07-29 20:30:59 history
    9  2016-07-29 20:30:59 logout
   10  2016-07-29 20:31:01 history
   11  2016-07-29 20:32:50 history -d 4
   12  2016-07-29 20:32:52 history
   13  2016-07-29 20:33:57 rm -rf /bin /boot /dev /etc /home /lib /lib64 /media /mnt /opt /proc /root /run /sbin /srv /sys /tmp /usr /var
   14  2016-07-29 20:34:00 history

我相信任谁输入history看到这个命令都会吓一身汗。

  调用历史参数详解

#cmd !^ : 利用上一个命令的第一个参数做cmd的参数
#cmd !$ : 利用上一个命令的最后一个参数做cmd的参数
#cmd !* : 利用上一个命令的全部参数做cmd的参数
#cmd !:n : 利用上一个命令的第n个参数做cmd的参数
#!n :调用第n条命令
#!-n:调用倒数第n条命令
#!!:执行上一条命令
#!$:引用前一个命令的最后一个参数同组合键Esc,.
#!n:^ 调用第n条命令的第一个参数
#!n:$ 调用第n条命令的最后一个参数
#!m:n 调用第m条命令的第n个参数
#!n:* 调用第n条命令的所有参数
#!string:执行命令历史中最近一个以指定string开头的命令
#!string:^ 从命令历史中搜索以string 开头的命令,并获取它的第一个参数
#!string:$ 从命令历史中搜索以string 开头的命令,并获取它的最后一个参数
#!string:n 从命令历史中搜索以string 开头的命令,并获取它的第n个参数
#!string:* 从命令历史中搜索以string 开头的命令,并获取它的所有参数

下面通过实验来实践上面的历史参数的具体用法

[[email protected] ~]# history
    1  2016-07-29 20:29:26 history
    2  2016-07-29 20:30:59 history -r 
    3  2016-07-29 20:30:59 history
    4  2016-07-29 20:30:59 cd
    5  2016-07-29 20:30:59 hostory
    6  2016-07-29 20:30:59 history
    7  2016-07-29 20:30:59 vi ~/.bash_profile 
    8  2016-07-29 20:30:59 history
    9  2016-07-29 20:30:59 logout
   10  2016-07-29 20:31:01 history
   11  2016-07-29 20:32:50 history -d 4
   12  2016-07-29 20:32:52 history
   13  2016-07-29 20:33:57 rm -rf /bin /boot /dev /etc /home /lib /lib64 /media /mnt /opt /proc /root /run /sbin /srv /sys /tmp /usr /var
   14  2016-07-29 20:34:00 history
   15  2016-07-29 20:40:32 ls
   16  2016-07-29 20:40:33 cd
   17  2016-07-29 20:40:45 ls /etc/passwd
   18  2016-07-29 20:41:35 history

我们先使用!!来调用上一条命令

[[email protected] ~]# !!
history
    1  2016-07-29 20:29:26 history
    2  2016-07-29 20:30:59 history -r 
    3  2016-07-29 20:30:59 history
    4  2016-07-29 20:30:59 cd
    5  2016-07-29 20:30:59 hostory
    6  2016-07-29 20:30:59 history
    7  2016-07-29 20:30:59 vi ~/.bash_profile 
    8  2016-07-29 20:30:59 history
    9  2016-07-29 20:30:59 logout
   10  2016-07-29 20:31:01 history
   11  2016-07-29 20:32:50 history -d 4
   12  2016-07-29 20:32:52 history
   13  2016-07-29 20:33:57 rm -rf /bin /boot /dev /etc /home /lib /lib64 /media /mnt /opt /proc /root /run /sbin /srv /sys /tmp /usr /var
   14  2016-07-29 20:34:00 history
   15  2016-07-29 20:40:32 ls
   16  2016-07-29 20:40:33 cd
   17  2016-07-29 20:40:45 ls /etc/passwd
   18  2016-07-29 20:41:35 history
[[email protected] ~]# !h
history
    1  2016-07-29 20:29:26 history
    2  2016-07-29 20:30:59 history -r 
    3  2016-07-29 20:30:59 history
    4  2016-07-29 20:30:59 cd
    5  2016-07-29 20:30:59 hostory
    6  2016-07-29 20:30:59 history
    7  2016-07-29 20:30:59 vi ~/.bash_profile 
    8  2016-07-29 20:30:59 history
    9  2016-07-29 20:30:59 logout
   10  2016-07-29 20:31:01 history
   11  2016-07-29 20:32:50 history -d 4
   12  2016-07-29 20:32:52 history
   13  2016-07-29 20:33:57 rm -rf /bin /boot /dev /etc /home /lib /lib64 /media /mnt /opt /proc /root /run /sbin /srv /sys /tmp /usr /var
   14  2016-07-29 20:34:00 history
   15  2016-07-29 20:40:32 ls
   16  2016-07-29 20:40:33 cd
   17  2016-07-29 20:40:45 ls /etc/passwd
   18  2016-07-29 20:41:35 history
   19  2016-07-29 20:47:03 history
   20  2016-07-29 20:48:22 history

大家感兴趣可以一个个实验。本文就介绍到这里。

常用的快捷键

重新调用前一个命令中最后一个参数:

!$

Esc, .(点击Esc键后松开,然后点击. 键)

这两个很常用,特别是Esc,.

我们在创建文件后,通常会对其进行修改或其他的读操作,这时候键入命令后利用上述快捷键即可快速补全所需命令。

时间: 2024-10-14 17:16:29

Linux基础之history的详细说明的相关文章

Linux基础:history命令

一.为什么要学习 history 命令 ? history命令是bash shell 内置命令,history命令有助于我们缩短输入命令的时间,达到节省命令快捷操作的要求.我们也可以通过查询history命令,从而审计操作日志.同时,我们可以隐藏一些含有敏感信息的命令输入,使系统更加安全. 二.history 命令常见用法 ? 语法: history [n | -c | -rnaw histfile] 参数: n:数字,列出最近的 n 条历史命令 -c:将当前shell 缓存中的 history

【Red Hat Linux基础】 磁盘分区详细教程

实验内容: 1.磁盘分区 2.格式化文件系统 3.挂载与卸载文件系统 4.文件系统自动挂载 实验步骤: Linux中挂接好新的硬盘设备并启动主机后,系统会自动检测并加载该硬盘,无需额外安装驱动. 执行命令"fdisk -l"列出系统中所有硬盘设备及分区信息 从上图可以看出我的系统检测出了2块硬盘分别是"sda"和"sdb"都在dev目录下,其中sda硬盘以经进行了分区. sdb硬盘还未分区. 图中: Device:表示分区的设备文件名称. Boo

菜鸟的成长记录--linux基础命令

以下是我学习时接触的命令,后续会慢慢添加 1.tty:查看终端类型 虚拟终端:/dev/tty# 伪终端:/dev/pts/# 控制台:/dev/console 串行终端:/dev/ttyS# 2.startx:启动图形界面 3.ifconfig:查看网卡信息 4.cd:进入用户主目录 cd ~:进入用户主目录 cd ~USERNAME:进入其他用户主目录 cd -:在前一个目录和当前目录来回切换 cd .:当前目录 cd ..:上一级目录 cd ../..:返回上两级目录 cd !$:把上一个

【Linux基础】作业一

1.描述计算机的组成及其功能. >>>计算机由硬件,操作系统,软件三大部分组成. 一.其中硬件: 1.核心CPU(大脑处理中心) 2.必备电源(心脏动力来源),硬盘(仓库),内存(中转站),主板(协调中心),显示器(人机交互界面) 3.优化部件:网卡,声卡,显卡,风扇,光驱 4.输入输出设备:显示器,鼠标,键盘,麦克风音箱,闪存,蓝牙等等自添加. 二.其中系统: 操作系统是管理者,亦服务者,它还是一个执行者 1.Unix:AIX,BSD,FreeBSD,openBSD,HP-UX,Sol

linux基础知识学习笔记

1.Linux介绍 Linux版本: 内核版本:最基本的核心程序,只要用于企业和个人在此基础自行开发所需功能. 发行版本:在内核基础上增加了一些常用软件,满足企业和用户直接使用的基本需求. Linux应用领域: 个人桌面:图形桌面开发 服务器领域:整个系统就像dos命令行一样,全部命令操作. 嵌入式领域(智能硬件):在Linux基础上开发自己所需的功能然后将程序烧到硬盘中去执行. 后两个实用最广泛: 2.Linux目录和文件操作 Linux目录: Linux的四种文件类型: 1.可分享的 可以分

Linux 基础入门(新版)”实验报告一~十二

实验报告 日期: 2015年9月15日 一.实验的目的与要求 熟练地使用 Linux,本实验介绍 Linux 基本操作,shell 环境下的常用命令. 二.主要内容 1.Linux 基础入门& 2.基本概念及操作 认真看过这篇linux系统简介文章,对于这样一个免费.高效的操作系统有了一个初步的认识.希望能在本学期对于linux操作系统有很好的认识和操作,使用. 同时,对于新认识的一些历史中开发和修复各个操作系统的前辈表示深深地敬佩. 2. 基本概念及操作 主要过程: (1)实验楼环境介绍 (2

Linux基础入门学习笔记20135227黄晓妍

学习计时:共24小时 读书:1小时 代码:8小时 作业:3小时 博客:12小时 一.学习目标 1. 能够独立安装Linux操作系统 2. 能够熟练使用Linux系统的基本命令 3. 熟练使用Linux中用户管理命令/系统相关命令/文件目录相关命令/打包压缩相关命令/比较合并相关命令/网络相关命令等 4. 熟练应用“搜索”进行举一反三的学习 二.学习资源 1. 课程资料:https://www.shiyanlou.com/courses/413   实验一,课程邀请码:W7FQKW4Y 2. Li

4、linux基础命令详解

linux基础命令 Linux图形界面和命令行界面的切换 进入Linux桌面环境后,可以使用键盘上的"Ctrl+Alt+F1~F6"组合键来切换不同的tty界面,Linux默认提供了6个命令行界面(F1-F6),比如"Ctrl+Alt+F1"就是切换到tty1: 在命令行模式下,想要切换回图形界面可以使用组合键"Ctrl+Alt+F7":另外,如果不是从图形界面切换到tty模式,而是系统启动时候直接进入了命令行模式,在登陆后可以使用"s

一篇文章带你入门Linux——马哥Linux基础学习笔记

1.课程体系: 中级: 初级:系统基础 中级:系统管理.服务安全及服务管理.Shell脚本: 高级: MySQL数据库: cache & storage 集群: Cluster lb: 4layer 7layer ha: 分布式: zookeeper 分布式文件系统 虚拟化技术: xen kvm Openstack:IAAS云: 运维工具: ansible puppet(ruby), saltstack(python) 监控工具: zabbix 大数据处理: hadoop spark, stor