An open API service indexing awesome lists of open source software.

https://github.com/md-command-line/bash_google

Do not open browsers; let terminal do the work. 💪
https://github.com/md-command-line/bash_google

Last synced: 4 months ago
JSON representation

Do not open browsers; let terminal do the work. 💪

Awesome Lists containing this project

README

          

ever wanted to google from your terminal?

just put this in your terminal
```bash
echo 'function gg {
string="$*";
search="${string// /+}";
googleurl="https://www.google.com/search?q=$search";
open $googleurl;
}
alias gg="gg"' >> ~/.bashrc; source ~/.bashrc;
```

then you can google using `gg`

## Try it out!
example: `gg 'github michaeldimmitt'`