Verifique se o seu histórico está ativado. Você pode verificar o status atual executando:
set -o
A saída deve conter (observe a history on
linha):
histexpand on
history on
ignoreeof off
Se isso não estiver ativado, você precisará executar set -o history
. Para tornar essa alteração persistente, você deve anexá-la a ~/.bashrc
:
set -o history
Se você deseja executar o comando anterior, também pode executar o próximo comando:
!!
Na página de manual do Bash :
Event Designators
An event designator is a reference to a command line entry in the history list.
! Start a history substitution, except when followed by a blank, newline,
carriage return, = or ( (when the extglob shell option is
enabled using the shopt builtin).
!n Refer to command line n.
!-n Refer to the current command line minus n.
!! Refer to the previous command. This is a synonym for `!-1'.
!string
Refer to the most recent command starting with string.
!?string[?]
Refer to the most recent command containing string. The trailing ?
may be omitted if string is followed immediately by a newline.
^string1^string2^
Quick substitution. Repeat the last command, replacing string1 with
string2. Equivalent to ``!!:s/string1/string2/'' (see Modifiers below).
!# The entire command line typed so far.
Se você estiver usando o Bash, também poderá usar os atalhos padrão para navegar pelo histórico:
- Ctrl+ P: Comando anterior
Ctrl+ N: Próximo comando
Comandos para Manipular o Histórico Histórico Anterior (Cp) Busque o comando anterior na lista de histórico, retornando à lista. next-history (Cn) Busque o próximo comando da lista de histórico, avançando na lista.