Finding an old command in the shell history [duplicate]
Solution 1:
History is what you are looking for.
Run history
to get a list of the last 1000 commands, or run:
history | grep command_to_search
to search some pattern within the history generated list, for example:
history | grep apt
To search any apt
related command, note that grep
does not anchor your pattern to either end of the string, so no wildcards needed in most cases.
The history
list is generated from the last 1000 commands (by default) stored in ~/.bash_history
(which stores the last 2000 by default), and such file gets only updated whenever you exit your Bash session cleanly. That means, all commands from your current session will not be in that file until you close your terminal. They will also not be written if you kill the shell process.
Therefore, the command history (2000 last commands) can also be found at ~/.bash_history
, by either:
-
less ~/.bash_history
or, e.g.gedit ~/.bash_history
- Opening Nautilus, Ctrl+h, and searching for the
.bash_history
file.
Both history
and ~/.bash_history
behavior can be changed by adding or modifying the options in ~/.bashrc
, these are a few examples:
Append
export HISTCONTROL=ignoreboth:erasedups
or modify the existingHISTCONTROL
line, to remove duplicate commands, i.e. if one runsecho Hello
immediately afterecho Hello
, only one will appear inbash_history
.Modify
HISTSIZE=1000
to extend or reduce the amount of commands shown withhistory
Modify
HISTFILESIZE=2000
to extend or reduce the amount of commands stored inbash_history
. SetHISTFILESIZE=-1
for unlimited.Append
HISTFILE=/path/to/file
to save the history somewhere else.
Sources and further reading:
Bash man pages
Credit to comments from Byte Commander
Solution 2:
There are many ways to find an recently executed command.
The most simple one is to just hit the ↑ key and cycle through your command history line by line until you spot what you looked for.
-
You can also press Ctrl+R to enter the so-called
(reverse-i-search)
mode.It is a search prompt that will automatically complete what you start to type with the most recently run command that contains this string. When it shows what you looked for, press Enter to run it, or Esc to exit the search prompt while keeping the command on the prompt, so that you can edit it. To discard the result and exit search, hit Ctrl+C.
-
You can use the
history
Bash built-in to show the complete list of recorded commands from your history.You can filter that list for lines matching a specific pattern using e.g.
grep
, likehistory | grep 'appengine'
.More info about the
history
built-in command of Bash can be found by typinghelp history
. -
Use bang-expansion to directly run the most recently executed command containing a string. This will replace the line you typed with the matching line from history and run it immediately, without confirmation, so be careful.
Simply type
!string
and it will replace that with the most recent command-line that started with "string".If you want to run the last command that ended with "string", type
!?string
instead.Or if you want the last command-line containing "string" anywhere, type
!?string?
.More info about history bang expansion can be found by typing
man history
.