Home » Questions » Computers [ Ask a new question ]

How can I search the bash history and rerun a command?

How can I search the bash history and rerun a command?

Can I search history in bash and run the result?

Asked by: Guest | Views: 304
Total answers/comments: 5
bert [Entry]

"Type Ctrl R at the command line and start typing the previous command. Once a result appears keep hitting Ctrl R to see other matches. When the command you want appears, simply press Enter

Note that while Ctrl R is the default, if you wanted the command (reverse-search-history) to be bound to Ctrl T you could configure that with the following:

bind '""\C-t"": reverse-search-history'

There are a whole host of other readline bindable commands that are available to you as well. Take a look at the bash man page.

Bash has many facilities to search and access interactive command history. The most basic of which is the history builtin. Typing just:

$ history

Will print a list of commands along with a numeric index, like:

$ history
1 clear
2 ls -al
3 vim ~/somefile.txt
4 history
$

You can then execute any of these commands using their numeric index by prefacing the index with a single !, as Mitch pointed out:

$ !1

Will execute the clear command. The history builtin has many features itself, you can see more in the bash and history man pages.

You can also specify relative negative offsets when using the ! designator, so using our history list above, if we wanted to execute vim again, we could do:

$ !-2

Which is basically telling bash to execute the command you ran ""two commands ago."" To run the previous command in the history list, we can just use !! (which is just shorthand for !-1).

The ! designator doesn't limit you to numerically specifying which command to run. hayalci showed that you can instruct bash to execute a command based on either the text it begins with (using !) or text within the command itself (using !?). Again, using our example history list above, if we wanted to execute clear again, all we need to do is type:

$ !cl

and press Enter. And what about vim? That is as simple as:

$ !?some

The most important point from hayalci's response is the call to the shopt builtin:

$ shopt -s histverify

This will enable history verification so that commands that are matched by the !, !!, and !? designators are not blindly executed, but instead filled in on the command line so you can ensure they will do no evil before executing them. This is even more important when you are executing commands as the root user. This option can be set in your .bashrc startup file so that it is set whenever you log in.

As has already been pointed out, all of this information can be gleaned from the bash man page. For the !, !!, and !? designators, take a look at Section 9.3 History Expansion."
bert [Entry]

"As an alternative to crtl+R, you can search history by typing

!text

This will search the history for the most recent command beginning with 'text'.

But I suggest you put this in your .bashrc to prevent execution of wrong command.

shopt -s histverify

This instructs bash such that, after any history actions (like !!:s/prev_text/after_text), it places the resulting line to the command prompt. Then you can review or edit the command, and press Enter afterwards."
bert [Entry]

"I have a really great alias, h. It's really just ""history | grep"", but I filter out previous ""h command"" entries with the ""grep -E -v""

alias h=""history | grep -E -v '^ *[0-9]+ *h ' | grep ""

used like

h aliases
2003 less .bash_aliases"
bert [Entry]

"As navigation through history using Ctrl-r is IMO cumbersome, you may want to consider hh:

github.com/dvorka/hstr

which makes navigation much simpler, straightforward and efficient - including running the command:"
bert [Entry]

"At the bash command prompt, type control-R, then type a few characters of the command you want and bash's readline facility will search through the command history for that command.

After you have started the search, you can type control-R again to jump to the next matching command."