User Tools

Site Tools


blog:search_google.com_from_the_linux_command_line

This is an old revision of the document!


Search Google.com from the Linux command line

You can search Google.com from the Linux command line without using a CLI web browser like lynx or Elinks. All you need is the curl and html2text packages installed. Then you issue the following command:

curl -A Mozilla http://www.google.com/search?q=Linux |html2text -width 80

where you can replace Linux with another keyword of your choice. The results will be displayed in your console application with a width of 80.

I have created a bash shell function for this:

google() { curl -A Mozilla http://www.google.com/search?q=$* | html2text -width 80; }

Now you can just google linux

~~LINKBACK~~

Discussion

Enter your comment. Wiki syntax is allowed:
   __ __   ___  __  __  __  __  _      __
  / //_/  / _ ) \ \/ / / / / / | | /| / /
 / ,<    / _  |  \  / / /_/ /  | |/ |/ / 
/_/|_|  /____/   /_/  \____/   |__/|__/
 
blog/search_google.com_from_the_linux_command_line.1249970824.txt.gz · Last modified: 2009-08-11 08:07 by brb