Nifty app offers expanded access to terminal history

Reusing Previous Commands with the Bash History Suggest Box

© Lead Image © lightwise, 123RF.com

© Lead Image © lightwise, 123RF.com

Article from Issue 164/2014
Author(s):

You can always browse the Bash history using your arrow keys, but Bash's search capabilities are very limited. Enter the clever Bash History Suggest Box.

When you are working at the command line, you often need to repeat or slightly modify previously entered commands. Most experienced users know they can browse the Bash history quite simply by pressing the up and down arrows at the command line, then pressing the left and right arrows to move the text cursor.

Fewer users know that you can also search the Bash history by pressing Ctrl+R and then typing; the shell automatically retrieves the first matching result. Continuing to press Ctrl+R jumps from match to match until you find the command you are seeking.

Bash keeps track of all the commands typed at the command line in the ~/.bash_history file, and you can view the file with the history command (Listing 1).

Listing 1

history Command Output

 

Although the Bash history and its search function deliver very useful results, the standard tools leave room for improvement. If you type Ctrl+R too often, and overshoot the desired target, you have no way to go back one step in the history. You have to cancel the search (Ctrl+ D) and start all over again.

If you spend a lot of time at the console, you will not want to miss the Bash History Suggest Box utility [1], which improves the view of your Bash history and supports more convenient searching (Figure 1).

Figure 1: Bash History Suggest Box supports convenient browsing of the shell history.

Installation

The Bash History Suggest Box tool has not yet found its way into the repositories of the major distributions. Even Ubuntu 14.04 "Trusty Tahr" does not yet have the software in its repositories, but you can install it retroactively thanks to a PPA provided by the tool's developer:

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

Arch Linux users find the Bash History Suggest Box in AUR [2]; for Debian "Wheezy" and Linux Mint 13, the program author recommends an additional package source on his home page. However, you can also build Suggest Box yourself from the sources (Listing 2).

Listing 2

Building Suggest Box from Source

 

After completing the install, you can run Bash History Suggest Box by typing hh. As usual, you scroll through the history with the up and down arrow keys and accept the currently selected command by pressing the left or right arrows or the Tab key. Alternatively, you can map the call to hh directly to the Ctrl+R keyboard shortcut so that Suggest Box replaces the standard Bash search.

The following commands add the necessary configuration, together with additional settings for color and a more extensive bash history to your ~/.bashrc, and then tells the shell to immediately re-parse its configuration:

$ hh --show-configuration >> ~/.bashrc
$ source ~/.bashrc

This prevents having to log out and then back in to enable Suggest Box.

New Search Functions

Bash History Suggest Box does not just improve the history experience, it also enhances searching. As before, you launch a search by pressing Ctrl+R and then enter a search term. Suggest Box then automatically filters all the commands containing the search key from the history (Figure 2). If you want to remove one of the results from history, simply delete it by pressing the Delete key. To add frequently used commands to your favorites, press Ctrl+F.

Figure 2: By default, Suggest Box sorts the results by frequency.

The more often you execute a command, the higher up it appears in the search results. Pressing Ctrl+Shift+7 lets you sort the results by "ranking" or "history," or restrict the selection to your previously saved favorites. Pressing Ctrl+T tells Suggest Box to make case-sensitive searches.

The ability to exclude commands from the shell history is also useful. For example, if the history includes logins and passwords that you not want to appear in the Bash log, Suggest Box automatically adds the HISTCONTROL=ignorespace command to your ~/.bashrc:

export HISTCONTROL=ignorespace

If you add a space in front of a command, Bash does not add it to the history. You can also completely ignore trivial commands with HISTIGNORE

export HISTIGNORE="pwd:ls:ls -l:cd"

for example, ls, pwd, or cd.

Conclusions

Compared with the standard Bash search, Bash History Suggest Box offers numerous advantages. First and foremost, you can scroll through the search results and quickly retrieve and rewrite a command from the history. Additionally, having the ability to sort the search results by input frequency is particularly practical: It makes sure that you will always find the most frequently used commands at the top of the list.

Infos

  1. Bash History Suggest Box: https://github.com/dvorka/hstr
  2. hh in AUR: https://aur.archlinux.org/packages/hh/

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • McFly

    When it comes to working at the command line, using Bash history effectively can save you time. McFly extends the Bash history's features and helps you find past commands more quickly.

  • Effectively using Bash history

    You can do more with the Bash history command than just using the arrow keys. We show you how to use this command-line tool more efficiently.

  • Don't Know Much About History

    The versatile Bash history command can save you time and effort at the command line.

  • History Lesson

    For admins like Charly, who try to avoid typing at all costs, the shell offers an excellent opportunity to avoid wear on your fingertips in the form of built-in history.

  • Command Line

    A few basic tricks can liven up the command line and add a dash of color to your console.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News