Nifty app offers expanded access to terminal history
Reusing Previous Commands with the Bash History Suggest Box

© Lead Image © lightwise, 123RF.com
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).
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.
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
- Bash History Suggest Box: https://github.com/dvorka/hstr
- hh in AUR: https://aur.archlinux.org/packages/hh/
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
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.
News
-
Fedora 39 Beta is Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.
-
Star Labs Reveals a New Surface-Like Linux Tablet
If you've ever wanted a tablet that rivals the MS Surface, you're in luck as Star Labs has created such a device.
-
SUSE Going Private (Again)
The company behind SUSE Linux Enterprise, Rancher, and NeuVector recently announced that Marcel LUX III SARL (Marcel), its majority shareholder, intends to delist it from the Frankfurt Stock Exchange by way of a merger.