De man bash
:
HISTFILE
The name of the file in which command history is saved.
The default value is ~/.bash_history.
If unset, the command history is not saved when a shell exits.
Por lo tanto, la variable HISTFILE
contendrá el nombre de archivo donde se guardará el historial.
$ echo "$HISTFILE"
/home/user/.bash_history
Ahora puede buscar el patrón:
$ grep "vim" "$HISTFILE"
vim foo.text
vim bar.text
vim file.txt
Como señaló @Dennis, si lo desea, puede ejecutar history -a
para agregar el historial de comandos de la sesión en ejecución al $HISTFILE
archivo. Básicamente, los comandos se agregarán automáticamente una vez que cierre una sesión, history -a
harán lo mismo en ese instante.
Corre help history
para tener más idea sobre el history
propio edificio.