linux的history查看全部历史,linux查看历史命令history
1. history作⽤ linux的history命令的作⽤是,记录执⾏过的命令。 ⽤法: history [n] n为数字,列出最近的n条命令 -c 将⽬前shell中的所有history命令消除 history [-raw] histfiles -a 将⽬前新增的命令写⼊histfiles, 默认写⼊~/.bash_history -r 将histfiles内容读⼊到⽬前shell的history记忆中 -w 将⽬前history记忆的内容写⼊到histfiles
shell > history
34 14-10-28 16:19:24 ll
35 14-10-28 16:19:26 vim test
36 14-10-28 16:19:33 ll
37 14-10-28 16:19:34 ll 展⽰3⾏
shell > history 3
1032 14-11-02 16:10:41 history
1033 14-11-02 16:10:46 history |more
1034 14-11-02 16:11:15 history 3 使⽤! 执⾏历史命令。 ! number 执⾏第⼏条命令 ! command 从最近的命令查到以command开头的命令执⾏ !! 执⾏上⼀条linux登录命令
shell > !1046
history 3
1045 14-11-02 16:22:38 head ~/.bash_history
1046 14-11-02 16:35:37 history 3
1047 14-11-02 16:35:48 history 3
shell > !!
history 3
1046 14-11-02 16:35:37 history 3
1047 14-11-02 16:35:48 history 3
1048 14-11-02 16:35:52 history 3
shell > !head
head ~/.bash_history
#1414484377
cd update/
#1414484377
2. history配置修改 history记录的⾏数
shell > echo $HISTSIZE
1000
shell > 默认记录1000⾏ 配置⽂件在/etc/profile中修改
HISTSIZE=1000
export HISTSIZE 历史命令⽂件记录在 ~/.bash_history中
想要让linux的history命令显⽰时间,history是默认不带时间, 在/etc/profile 中增加
export HISTTIMEFORMAT="%y-%m-%d %H:%M:%S " 查看.bash_history
shell > head ~/.bash_history
#1414484377
cd update/
#1414484377
ll
#1414484388
vim address
#1414484439
ll
#1414484440
ll
shell >
3. 同⼀账号同时多次登录写⼊history 普通情况下, 当以bash登录 系统时,系统会从~/.bash_history读取以前运⾏的命令 当注销时,把最新的1000(HISTSIZE)条命令更新到~/.bash_history⽂件中。 也可以使⽤history -w强制⽴刻写⼊,仅保留最新的。
当同⼀账号,同时登录多个bash时,只有最后⼀个退出的会写⼊bash_history,其他的都被覆盖了。
4. Ctrl+r 反向查询历史命令 使⽤Ctrl+r反向查询历史命令,将匹配的最新⼀条显⽰出来 如果还想继续向上查询,继续按Ctrl+r
shell > history 3
1048 14-11-02 16:35:52 history 3
1049 14-11-02 16:36:11 head ~/.bash_history
1050 14-11-02 16:41:05 history 3
(reverse-i-search)`his': head ~/.bash_history

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。