Today, Google search is a well known and the most-used search engine on the World Wide Web (WWW), if you want to gather information from millions of servers on the Internet, then it is the number one and most reliable tool for that purpose plus much more.
Many people around the world mainly use Google search via a graphical web browser interface. However, command line geeks who are always glued to the terminal for their day-to-day system related tasks, face difficulties in accessing Google search from command-line, this is where Googler comes in handy.
Read Also: Wikit – A Command Line Tool to Search Wikipedia in Linux
Googler is a powerful, feature-rich and Python-based command line tool for accessing Google (Web & News) and Google Site Search within the Linux terminal.
Note: Googler is not in any way associated to Google.
How Does Googler Works?
It provides an interface from the command line to Google search and displays results inform of title, URL and abstract information in pages, with page navigation similar to that on a GUI web browser.
Watch the quick demo of Googler.
Users can integrate it with a text-based web browser and open the result directly in the web browser.
It supports sequential searches in a single instance and importantly, users do not need to master any usage options as the shell completion scripts automatically invokes them.
Features of Googler
- Offers access to Google Search, Google Site Search, Google News.
- It is fast and clean with custom colors and no ads, stray URLs or clutter included.
- Allows navigation of search result pages from omniprompt.
- Supports fetching of number of results in a go, users can start at the nth result.
- Users can disable automatic spelling correction and search exact keywords.
- Supports limiting of search by attributes such as duration, country/domain specific search (default: .com), language preference.
- Supports Google search keywords in the form filetype:mime, site:somesite.com and many others.
- Permits non-stop searches: start new searches at omniprompt without exiting.
- Supports HTTPS proxy services.
- Ships in with a man page which includes examples, shell completion scripts for Bash, Zsh and Fish.
- Users can optionally open first search result in a web browser.
How To Install Googler in Linux
Users of Ubuntu Linux and its derivatives such as Linux Mint, Xubuntu can install it via this PPA by executing the commands below:
$ sudo add-apt-repository ppa:twodopeshaggy/jarun $ sudo apt-get update $ sudo apt-get install googler
Important: If in case above installation instructions fails to install Googler, then you need to install it from source using latest version as shown.
Other distributions can install Googler from source using following instructions.
First download the latest version of Googler (at the time writing the latest version is v2.9).
$ cd Downloads $ wget -c https://github.com/jarun/googler/archive/v2.9.tar.gz $ tar -xvf v2.9.tar.gz $ cd googler-2.9 $ sudo make install $ cd auto-completion/bash/ $ sudo cp googler-completion.bash /etc/bash_completion.d/
How to Use Googler in Linux Terminal
The following are some examples showing how Googler works in Linux, the basic command below will show information about tecmint.com
:
$ googler tecmint.com
At the end of the search result page, you can view the omniprompt help page by entering the “?”
character and pressing Enter. Each key has a detailed functionality description alongside it.
In the example, we will search for the quoted words (Linux command line tricks) on tecmint.com
.
$ googler -n 8 -w tecmint.com \"Linux command line tricks\"
where the options:
-n
num – tells googler to display at most 8 results per a page (default is 10).-w
– enables Google site(tecmint.com) search.
You can as well display results of latest news concerning Linux from the Google search news section by using the -N
switch as follows:
$ googler -N Linux
Set an alias to get four results showing the meaning of a word (tecmint in this case) like so:
$ alias tecmint='oogler -n 4 tecmint' $ tecmint
Visit the Googler Github repository for more information and usage or view the Googler man page.
$ man googler
Googler is a handy tool, it works perfectly and reliably for Linux users who spend most of their time on the terminal and want to search the web from a text-based interface. Remember to share your thoughts about Googler in the comments.
I am using googler on Ubuntu 18 and am unable to open any search results in a browser even after setting the BROWSER=w3m. I have also installed w3m and it works fine. I must say that the utility is awesome and I would like to use it further. Thanks
@Namit
You can raise the issue to the developer: https://github.com/jarun/googler
Update via source code from the git site using the master branch. It fixed some bugs for me.
Does this “fixed some bugs for me” include opening up results in browsers like elinks or w3m? I still cannot open any results. Dev suggest we grab the latest development branch and try but that didn’t help me. To file a bug, we have to add some logs in gist and a few other items/results from “
googler -d
” but I haven’t had a chance yet.Just checking if anyone else is having the same issue other than the two of us
[ERROR] Got HTTP 503: Service Unavailable
@mohamed
Check out the solution here: Got HTTP 503: Service Unavailable after some (ca 15) successful queries #137
Woww great!!!!
Those interested in this command line utility might also enjoy “surfraw” – a much more comprehensive command line search facility for many different types of each facilities other than Google. And partly written by none other than Julian Assange.
@Iaganon
Thanks for the suggestion, we will review it and possibly create an article about “surfraw”.
i installedin redhat linux, giving the below error, is python3 module required here, please confirm.
# googler techmint.com
/usr/bin/env: python3: No such file or directory
# ls -l /usr/bin/python3
ls: cannot access /usr/bin/python3: No such file or directory
@Rajasekar
You need to have Python 3 or higher installed to run Googler.
Even installing python more than 3 version it shows me this message
After installing googler to my Ubuntu 16.04, now Ubuntu login stuck in loop.
Please help me out with this
`googler` has nothing to do with Ubuntu login. You can, however, remove it using `Ctrl Alt F1` and `sudo apt purge googler`.
@Amrendra
Try the following steps:
1. At login screen, press Ctrl+Alt+F1 get a virtual console.
2. Login with your username and password
3. Run the command below to rename the hidden file, .Xauthority in your home directory.
mv .Xauthority .Xauthority.bak
4. Then switch back to the login screen using Ctrl+Alt+F7.
I hope this will help, if it doesn’t try to get back.
I liked Googler but have not used it in a while. The one problem I had was opening search results in either w3m or elinks. This CLI rookie would appreciate any suggestions
The man page has some info on this in the ENVIRONMENT section. The usage is:
`BROWSER=w3m googler -n 3 -d google`
@Richard
Many thanks for the useful solution.
@s_dahl
Set the BROWSER environment variable as follows:
export BROWSER=w3m
or
export BROWSER=elinks
Alternatively, you can set it permanently in the .bash_profile(user-specific configuration) or /etc/profile(for system wide configuration) file
After that run the command below for the changes to take effect:
source .bash_profile
or
source /etc/profile
Awesome utility! Thank you!
@Jason
Welcome and thanks for following us.