Shell tool examples in the terminal
eg Explains
Need to know how to use a command-line tool? eg provides real life examples, and it is easier to access than the man pages.
On forums and in discussion groups, you increasingly find people claiming that using the command line is an anachronism. They say that it should be possible to handle any task with graphical tools. This kind of statement shows that whoever posted the comments has never seriously tried to work with a terminal. Anyone who is aware of the speed and elegance of working at the command line would never agree that graphical tools alone would be preferable. I admit to using a hybrid of command line and graphical tools on the Plasma desktop. I have increasingly used both, equally, in combination for many years, and there is no way I would want to do without the command line given this very satisfying division of labor.
Complex Man Pages
There are several ways to approach working in a terminal as a newcomer with the willingness to learn. The first place to start for many users is the man pages, which are great as a reference because they list all the options, flags, and parameters for a tool. But if you actually want to learn how to use command-line interface (CLI) tools, the man pages offer very limited help – in fact, they are more likely to scare off most newcomers. Hands-on examples provide far more easily digestible information, and there are countless examples on the web. The trick is finding the right example from such a massive selection.
This is where the interactive tool eg
enters the scene. It stands for exempli gratia (e.g. for short), which comes from Latin. The name makes sense, until you need to search the web or your hard drive for "eg" and are bombarded with matches. eg
's self-description states that it provides examples of common uses of command line tools. I checked how well this works.
Quickly Installed
To do so, I first visited the tool's GitHub page [1] to see what the install looks like. The tool is not available from the package archives of most of the popular Linux distributions. You can install it with pip
, the package installer for Python packages from the Python Package Index. But to do this, you may first need to install the python3-pip package on your machine from the package manager, if it is not already in place. You then retrieve eg with the pip install eg
command and store it on your hard disc.
Once eg
is installed and ready to use, there is no need for configuration, but it is possible. As your first official step, type the eg --list
command, which shows you an alphabetically sorted list of the 80 or so tools and commands currently supported (Figure 1). If the system outputs a command not found message when you do this, you will probably have to log off the desktop and log back on again. The system will then include the installation directory in its path.
Examples of one of the listed commands are easy to access by calling eg NAME
. You will notice that some entries have only a few lines (Figure 2), while others – such as the entry for Git – have several hundred lines. Once you have finished reading an entry, pressing Q will return you to the prompt. If you do not want to continue using eg
after a test, simply remove it by typing pip uninstall eg
.
Scope for Your Own Ideas
eg
stores in $HOME/.local/lib/python3.9/site-packages
. Check out the "Installation Path" box for more details. In the installation directory, you will find the supported commands and tools below the eg/examples/
folder in Markdown format. If you want to add examples or parameters yourself, open the corresponding Markdown file and make your changes.
Installation Path
You install eg
in $HOME/.local/lib/
, and the executable is located in $HOME/.local/bin
. You need to make sure that this directory is in your path variable. You can determine whether this is the case by typing echo $PATH
. If the directory is missing from the list, you can add it temporarily by typing export PATH="$HOME/.local/bin:$PATH"
. But this configuration will not survive the next reboot. Use the entry shown in Listing 1 to store it permanently in your $HOME/.profile
. Most desktop environments preconfigure the shell appropriately. But the if
query in Listing 1 only integrates the path if the directory already exists at login time. You may need to log out and back on again after installing eg
.
Listing 1
~/.profile
[...] # set PATH so it includes user's # private bin if it exists if [ -d "$HOME/.local/bin" ]; then PATH="$HOME/.local/bin:$PATH" fi [...]
Also, eg
lets you store your own entries in the data structure. To do this, create a file named NAME.md
in examples/
, and eg
will load it automatically from there. Ultimately, the tool does nothing more than match a command you type, such as eg git
, with the files in the default and custom directories (including subfolders). If eg
finds a matching entry, it outputs the entry, piping it through the less
pager (Figure 3) to do so.
If you want to organize your own creations in a separate directory, create a configuration file named $HOME/.config/eg/egrc
or $HOME/.egrc
. In the simplest case, this will look something like Listing 2. You can also define an alternate location for the default examples/
directory. The output can also be extensively customized to suit your own needs, for example, by adding colors. Examples of this can be found on the project's GitHub page [1].
Listing 2
Configuration
[eg-config] custom-dir = $HOME/my-eg
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
-
System76 Refreshes Meerkat Mini PC
If you're looking for a small form factor PC powered by Linux, System76 has exactly what you need in the Meerkat mini PC.
-
Gnome 48 Alpha Ready for Testing
The latest Gnome desktop alpha is now available with plenty of new features and improvements.
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.