在Linux命令终端中查看和编辑曾执行过的命令_LINUX_操作系统

这篇文章主要介绍了在Linux命令终端中查看和编辑曾执行过的命令的方法,讲解了history和fc命

在Linux命令终端中查看和编辑曾执行过的命令_LINUX_操作系统

这篇文章主要介绍了在Linux命令终端中查看和编辑曾执行过的命令的方法,讲解了history和fc命令的使用,需要的朋友可以参考下

history

history 命令可以用来显示曾执行过的命令,也可以根据显示的治疗来重新执行需要的命令

n 显示n个最近的记录-a 添加记录-r 读取记录,但不会添加内容记录-w 覆盖原有的history 文件-c 清除记录-d<编号>[n] 删除指定n条记录-n<文件> 读取指定文件-r<文件> 读取文件但不记录-w<文件> 覆盖原有文件

例1复制代码代码如下:[root@redhat ~]# history #查看所有执行过的命令    1  ls    2  pwd    3  fc -l    4  history 复制代码代码如下: [root@redhat ~]# history 2 #显示2条    4  history     5  history 2复制代码代码如下: [root@redhat ~]# !4 #执行编号是4的命令,注意感叹号history     1  ls    2  pwd    3  fc -l    4  history     5  history 2    6  history 复制代码代码如下:[root@redhat ~]# history -c #清除历史记录!$ 引用前一个命令的最后一个参数

复制代码代码如下:[tank@localhost workspace]$ ls -all总用量 1060drwxrwxr-x. 15 tank tank    4096 8月   6 16:26 .drwx——. 60 tank tank    4096 8月  15 16:13 ..-rw-r–r–   1 root root    2466 7月  23 18:02 1.htmldrwxr-xr-x   7 tank tank    4096 7月  17 03:02 ckeditordrwxr-xr-x.  2 tank tank    4096 5月  29 00:08 database复制代码代码如下:[tank@localhost workspace]$ !$ #取得-all-allbash: -all: command not found

例2复制代码代码如下:[root@redhat ~]# ! -N #执行倒数第N条命令[root@redhat ~]# !! #执行上一条命令

fcfc 命令可以编辑曾今执行过的命令,并以批处理的形式让这些命令重新执行

-1 列出第一个指令和最后一个指令之间额度所有指令-n 不显示编号-r 反向排序-e<文本编辑器> 指定文本编辑器编辑,默认Vi-s<指令> 选择指令执行

例1复制代码代码如下:[root@redhat ~]# fc -l #查看执行过的命令,根history,很相似348      eval echo "aaa" ls349      eval echo "aaa";ls350      exec ls351      apt-get install mysql352      apt-get install mysql-server353      exit354      expr 4%6355      expr 4 % 6 356      expr 4<6 357      expr 4\'<\’6 358      expr 6 \’+\’ 5359      expr 6 \’*\’ 5360      expr 6 \’>\’ 5361      fc -l362      man fc363      fc –help复制代码代码如下:[root@redhat ~]# fc -s 358 #执行第358个命令expr 6 \’+\’ 511复制代码代码如下:[root@redhat ~]# fc 358 #编辑第358个命令

本文为网络共享文章,如有侵权请联系邮箱485837881@qq.com

作者: 张映

为您推荐

返回顶部