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
-
Red Hat Migrates RHEL from Xorg to Wayland
If you've been wondering when Xorg will finally be a thing of the past, wonder no more, as Red Hat has made it clear.
-
PipeWire 1.0 Officially Released
PipeWire was created to take the place of the oft-troubled PulseAudio and has finally reached the 1.0 status as a major update with plenty of improvements and the usual bug fixes.
-
Rocky Linux 9.3 Available for Download
The latest version of the RHEL alternative is now available and brings back cloud and container images for ppc64le along with plenty of new features and fixes.
-
Ubuntu Budgie Shifts How to Tackle Wayland
Ubuntu Budgie has yet to make the switch to Wayland but with a change in approaches, they're finally on track to making it happen.
-
TUXEDO's New Ultraportable Linux Workstation Released
The TUXEDO Pulse 14 blends portability with power, thanks to the AMD Ryzen 7 7840HS CPU.
-
AlmaLinux Will No Longer Be "Just Another RHEL Clone"
With the release of AlmaLinux 9.3, the distribution will be built entirely from upstream sources.
-
elementary OS 8 Has a Big Surprise in Store
When elementary OS 8 finally arrives, it will not only be based on Ubuntu 24.04 but it will also default to Wayland for better performance and security.
-
OpenELA Releases Enterprise Linux Source Code
With Red Hat restricting the source for RHEL, it was only a matter of time before those who depended on that source struck out on their own.
-
StripedFly Malware Hiding in Plain Sight as a Cryptocurrency Miner
A rather deceptive piece of malware has infected 1 million Windows and Linux hosts since 2017.
-
Experimental Wayland Support Planned for Linux Mint 21.3
As with most Linux distributions, the migration to Wayland is in full force. While some distributions have already made the move, Linux Mint has been a bit slower to do so.