搜索终端中的命令历史记录

时间:2014-02-18 20:30:26

标签: linux terminal history

你有没有在终端中使用command,但后来forgot what you typed,并希望有一些方法可以查看上次使用的命令?

2 个答案:

答案 0 :(得分:2)

有许多方法可以搜索命令历史记录。这是3:

  1. 在命令提示符下使用键盘上的up and down arrows
  2. 使用history命令。
  3. 在命令提示符下,只需按:Control + R
  4. E.g Control + R,然后写 php

    enter image description here

答案 1 :(得分:2)

我经常使用bash-builtin命令“history”来搜索某个命令,例如获取最后一个sudo命令类型:

history | grep sudo | tail -n 1

给出最后一个带有sudo的命令(带数字)。 “tail -n 1”给出最后一个匹配的行。然后使用

!<number>

执行exactely这个命令。

!-1
顺便说一句,

执行最后一个命令。在bash中运作良好。