Command-line history

The command-line history is a mechanism to minimize the number of keystrokes. You can read more about it at http://www.tldp.org/LDP/GNU-Linux-Tools-Summary/html/x1712.htm (retrieved January 2016).

To simply execute the last run command, type the following again:

$ !!

Depending on which shell mode (vi or emacs) you are in, you may prefer other ways to navigate the history. The up and down arrows on your keyboard should also let you navigate history.

A common use case is to search for a long command we executed in the past and run it again. We can search through history, as follows:

$ history|grep <search for something>

You can of course shorten this using the aliasing mechanism or with a desktop text expander. The search gives ...

Get Python Data Analysis Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.