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
Direct Download
Read full article as PDF:
Price $2.95
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
-
Armbian 23.05 is Now Available
Based on Debian 12, the latest version of the ARM/RISC-V distribution is now available to download and install.
-
Linux Mint Finally Receiving Support for Gestures
If you use the Linux Mint Cinnamon desktop, you'll be thrilled to know that 21.2 is getting support for gestures on touchscreen devices and touchpads.
-
An All-Snap Version of Ubuntu is In The Works
Along with the standard deb version of the open-source operating system, Canonical will release an-all snap version.
-
Mageia 9 Beta 2 Ready for Testing
The latest beta of the popular Mageia distribution now includes the latest kernel and plenty of updated applications.
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.