Asegúrate de que tu historial esté habilitado. Puede verificar el estado actual ejecutando:
set -o
La salida debe contener (tenga en cuenta la history on
línea):
histexpand on
history on
ignoreeof off
Si esto no está habilitado, debe ejecutar set -o history
. Para que este cambio sea persistente, debe agregarlo a ~/.bashrc
:
set -o history
Si desea ejecutar el comando anterior, también puede ejecutar el siguiente comando:
!!
Desde la página del manual de 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.
Si está utilizando Bash, también puede usar los accesos directos predeterminados para navegar por el historial:
- Ctrl+ P: Comando anterior
Ctrl+ N: Siguiente comando
Comandos para manipular el historial previous-history (Cp) Obtenga el comando anterior de la lista del historial y retroceda en la lista. next-history (Cn) Obtenga el siguiente comando de la lista de historial, avanzando en la lista.