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. 💪
- Host: GitHub
- URL: https://github.com/md-command-line/bash_google
- Owner: md-command-line
- Created: 2018-03-16T11:33:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-16T22:15:58.000Z (over 8 years ago)
- Last Synced: 2025-10-09T10:08:37.546Z (8 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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'`