Is there any way to execute commands from history?

For example:

[root@ip-10-0-7-125 ~]# history | grep free
  594  free -m
  634  free -m | xargs | awk '{print "free/total memory" $17 " / " $ 8}'
  635  free -m
  636  free -m | xargs | awk '{print "free/total memory" $9 " / " $ 10}'
  736  df -h | xargs |  awk '{print "free/total disk: " $11 " / " $9}'
  740  df -h | xargs |  awk '{print "free/total disk: " $11 " / " $8}'
  741  free -m | xargs | awk '{print "free/total memory: " $17 " / " $8 " MB"}'

I’m just wondering if there any way to execute the 636 command without typing it again, just type something plus the number, like history 636 or something.

Asked By: The One

||

In bash, just !636 will be ok.

Answered By: user164825

Yes, it’s called “history expansion.” See

LESS='+/^HISTORY EXPANSION' man bash

for full details.

Using an exclamation point followed by a number is arguably the simplest use:

!636

However, you can also run the last executed command directly without knowing its history number:

!!

Or you can run two commands back:

!-2

The form I most often use, however, is to repeat the last argument of the last command:

echo this text goes into a file > /tmp/afile.txt
cat !$

Or, let’s say I’m inspecting a file. Using tab completion, I might do the following:

ls -l /really/long/path/to/some/file
less !$

Again, read the man page for more details:

LESS='+/^HISTORY EXPANSION' man bash
Answered By: Wildcard

A nice one, if you don’t want to first history, note the number, etc:

in bash (and maybe others):

ctrl-r something 

(ctrl-r = “reverse search interactively”) (something = a part of a previous command)

This will show you the latest history line containing something . To get the one before, do ctrl-r (alone) again, each time it gets a previous line.

ex:

ctrl-r  10

to show the latest history line containing ’10’ (for exemple the line with $10, in your exemple), and ctrl-r again until you retrieve the history line you were looking for

When the line you wanted appear, just Enter to run it (or you can also edit it, using the arrow keys, backspace, and ctrl-a to go to the beginning of the line, ctrl-e to get to the End, ctrl-k : to “kill” from cursor to end of line (=deletes+saves it in a buffer), ctrl-y : to restore, from the buffer, a previously killed bit, etc.)

If you want to search forward (ctrl-s), you first need to disable XON : see https://stackoverflow.com/a/791800/1841533 :

” just to disable XON/XOFF by running

stty -ixon


(and then you will be able to use ctrl-s, without having it freeze the terminal)

Answered By: Olivier Dulac

You can use the shell builtin fc:

fc -s 636
Answered By: Zombo

There is HSTRhstr command for bash and zsh interactive command selection, better than Ctrl-R reverse search:

hstr interactive history command example

It’s interactive, so you can search for, and edit the command, before executing it.

On Ubuntu, you can install hstr with the following one-liner:

sudo add-apt-repository ppa:ultradvorka/ppa && sudo apt-get update && sudo apt-get install hstr && hstr --show-configuration >> ~/.bashrc && . ~/.bashrc

or step by step:

sudo add-apt-repository ppa:ultradvorka/ppa
sudo apt-get update
sudo apt-get install hstr

Install hstr on Fedora, RHEL or CentOS:

sudo dnf install hstr -y

On macOS with homebrew:

brew install hstr

…then configure it with:

hstr --show-configuration >> ~/.bashrc

This will replace the default Ctrl-R behavior.

Run hstr --show-configuration to determine what will be appended to your Bash profile.

More configuration options available on project homepage at Github:
https://github.com/dvorka/hstr

Answered By: modlin
Categories: Answers Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.