‘
history’
命令将显示shell中最后使用的命令列表(shell history)。
句法:
history <
number>
例:
history 10
文章图片
看上面的快照, 我们已经使用了历史-10(可以使用任何整数)命令, 它显示了最近十个命令的列表。
注意:” history -c” 从历史记录中清除所有命令的列表。
Ctrl + R 按键” ctrl + r” 将执行历史记录中与你键入的指定字符匹配的最后一个命令。
句法:
press 'ctrl+r'. <
characters>
例:
press 'ctrl+r'. ca
文章图片
【Linux Shell history命令】查看上面的快照, 我们按下了” ctrl + r” , 后跟两个字符ca, 它找到了最后一个与字符” ca” 匹配的命令。
推荐阅读
- shell历史history命令
- Linux Shell嵌入
- Linux转义特殊字符(\)
- Linux英镑符号 (#)
- Linux组合&&和||
- Linux双竖线(||)
- Linux 双&符(&&)
- Linux Dollar问号($())
- Linux&符(&)