The sys admin's daily grind
Charly's Column – googler
If you are a genuine admin, you will want to be able to google things at the command line. Charly uses googler for this; it has pretty useful capabilities despite the unimaginative name.
What if you need to google something but only have access to a command line? You could just grab your smartphone, but if you want to copy and paste something from the search results, that's not really a good solution. A text-mode browser like Lynx is more suitable.
But there is another option that is more powerful and fits seamlessly into the workflow on the console: googler
[1]. Many distributions have the tool in their package repositories, but it can also be installed manually with a few commands (Listing 1). The current version (at press time in July 2021) is googler
4.3.2.
Listing 1
Installing googler
$ cd Downloads/ $ wget -c https://github.com/jarun/googler/archive/refs/tags/v4.3.2.tar.gz $ tar -xvf v4.3.2.tar.gz $ cd googler-4.3.2/ $ sudo make install $ cd auto-completion/bash/ $ sudo cp googler-completion.bash /etc/bash_completion.d/
In the simplest case, you can start a keyword search on Google by calling googler TERM
. The result for the keyword "Linux" is shown in Figure 1. You can see that googler
numbers the search results. If you type the number for a search result, googler
passes the address to the default web browser to open. If this does not work for you, that means that googler
cannot determine the appropriate browser. You then need to pass in the name of the program with the --url-handler
parameters, for example, as --url-handler lynx
(or whatever you use).
By default, googler
always returns 10 search results; the number can be increased or reduced with the -n NUMBER
parameter. The parameter I use most often, however, is -t 12m
. This will only show hits that are at most 12 months old – which is quite handy, because if you're looking for a particular error message, for example, you are naturally more interested in recent results than ancient ones.
It is also often useful to limit the search to one website. For example, if you only want to see results from Wikipedia, you can do this with the -w
option. The example in Figure 2 shows hits for the term "Linux" that come from the Wikipedia website.
If you do not want to leave any data traces when searching the web, take a look at ddgr
[2]. It comes from the same author as googler
, supports (almost) the same parameters, but uses DuckDuckGo and is therefore far more frugal in terms of data handling.
Infos
- googler: https://github.com/jarun/googler
- ddgr: https://github.com/jarun/ddgr
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 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.
-
Plasma Desktop Will Soon Ask for Donations
The next iteration of Plasma has reached the soft feature freeze for the 6.2 version and includes a feature that could be divisive.
-
Linux Market Share Hits New High
For the first time, the Linux market share has reached a new high for desktops, and the trend looks like it will continue.
-
LibreOffice 24.8 Delivers New Features
LibreOffice is often considered the de facto standard office suite for the Linux operating system.
-
Deepin 23 Offers Wayland Support and New AI Tool
Deepin has been considered one of the most beautiful desktop operating systems for a long time and the arrival of version 23 has bolstered that reputation.