https://github.com/thomasheller/multigoogle
Multiple Google searches at once
https://github.com/thomasheller/multigoogle
Last synced: about 2 months ago
JSON representation
Multiple Google searches at once
- Host: GitHub
- URL: https://github.com/thomasheller/multigoogle
- Owner: thomasheller
- License: mit
- Created: 2017-03-14T06:49:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-14T06:53:52.000Z (about 8 years ago)
- Last Synced: 2025-02-13T14:40:02.520Z (4 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# multigoogle
multigoogle starts multiple Google searches at once.
Its syntax is very similar to shell brace expansion: Simply use
regular braces instead of curly braces. Furthermore, multigoogle
treats single elements inside braces as optional.## Install
```sh
$ go get github.com/thomasheller/multigoogle
$ alias mgo='noglob multigoogle'
```## Examples
```sh
$ mgo San Francisco,Berlin
```
Searches for "San Francisco" and "Berlin".```sh
$ mgo Go (San Francisco,Berlin)
```
Searches for "Go San Francisco" and "Go Berlin".```sh
$ mgo (Go,Golang) (San Francisco,Berlin)
```
Searches for "Go San Francisco", "Golang San Francisco", "Go Berlin" and "Golang Berlin".```sh
$ mgo San Francisco (Golang)
```
Searches for "San Francisco" and "San Francisco Golang".```sh
$ mgo (San Francisco,Berlin) (Golang)
```
Searches for "San Francisco", "San Francisco Golang", "Berlin" and "Berlin Golang".