温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

linux中history命令的介绍和使用

发布时间:2020-06-01 22:47:21 来源:亿速云 阅读:850 作者:鸽子 栏目:系统运维

1、manual说明
Display or manipulate the history list
显示或操作命令历史列表
2、概念区分
history  list是在内存缓存中的,history  file就是在硬盘中的。history  list针对当前会话生效。history   file 则针对所有会话都生效。当登录系统系统时,系统就会自动将history  list中,当退出系统时,history  list中的命令就会自动写入到history  file中去。
~/.bash_history      历史列表的默认保存位置
~/.bash_profile       当前用户的环境变量的设置位置
/etc/profile              系统环境变量的默认设置位置
关于HISTORY的变量:
HISTSIZE   命令历史记录的条数
HISTFILE    指定历史文件,默认为~/.bash_history
HISTFILESIZE:  命令历史文件记录历史的条数
HISTTIMEFORMAT:  HISTTIMEFORMAT=“%F%T”   显示时间
history用法:
history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]
Display the history list with line numbers, prefixing each modified      entry with a `'.  An argument of N lists only the last N entries
显示带有行号的历史记录列表,并在每个修改前加上前缀
带有“
”的条目。N的参数只列出最后的N个元素。
Options:
-c:    clear the history list by deleting all of the entries
通过删除所有条目来清除历史记录列表
linux中history命令的介绍和使用
-d offset:     delete the history entry at offset OFFSET
在偏移位置删除历史记录项(就是删除指定数字的历史条目)
linux中history命令的介绍和使用
-a:   append   history lines  from  this  session  to  the  history  file
将此会话的历史记录行追家到历史记录文件
linux中history命令的介绍和使用
-n:   read all  history  lines  not  already read  from the history  file 。
读取尚未从历史文件中读取的所有历史记录行
linux中history命令的介绍和使用
-r:    read  the  history  file and  append  the  contents  to   the  history  list
读取历史文件然后追加到历史记录文件中
linux中history命令的介绍和使用
-w:   write   the current history to  the  history file   and  append  them  to the history  list
将当前历史写入到历史文件中,同时将他们追加到历史列表中。
linux中history命令的介绍和使用
-p:  perform history  expansion   on  each  AGR  and  dispay   the  result  without storing  it in   the   history  list
对每个参数执行历史扩展并显示结果,而不将其存储在历史列表中
linux中history命令的介绍和使用
-s: append  the  ARGs  to   the  history   list  as  a  single  entry  
添加所有ARGs作为单独的条目到历史记录条目中。
linux中history命令的介绍和使用

其他比较常用的用法:
(一):查看历史命令
history    #显示所有历史命令’
history   10   #显示最近的10条命令
(二)查看默认历史命令条数:
echo   $HISTSIZE
这个环境变量定义在/etc/profile中
(三)命令重新调用
ls  !407  #重新调用历史命令中的正数第407个命令
ls  !-4    #重新调用历史中的倒数第4条命令
历史命令分两部分存放:    .bash_history  和内存中
正常退出时,内存中的历史命令会存储到.bash_history中
(四)执行前面倒数第一个以shut开头的命令
!shut
(五)执行前面一个包含go的命令
!?go
(六)执行刚刚执行过的命令
1、上下键翻
2、!-1
(七)搜索执行过的命令              
linux中history命令的介绍和使用

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI