Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aerth/helper
Command Line Assistant
https://github.com/aerth/helper
browser duckduckgo internet links search
Last synced: 2 months ago
JSON representation
Command Line Assistant
- Host: GitHub
- URL: https://github.com/aerth/helper
- Owner: aerth
- License: gpl-3.0
- Created: 2017-08-06T05:08:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-06T23:32:44.000Z (over 7 years ago)
- Last Synced: 2024-08-05T09:11:50.092Z (6 months ago)
- Topics: browser, duckduckgo, internet, links, search
- Language: Go
- Size: 28.3 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [helper](https://github.com/aerth/helper)
Command Line Assistant for people who [bang](https://duckduckgo.com/bang)[!](https://duckduckgo.com/lite?q=!g+"aerth"+helper+github)[!](https://duckduckgo.com/bang?c=Tech&sc=Languages+(Go))
### Usage
```
Available Resources:
g https://encrypted.google.com/search?q=%s
ddg https://duckduckgo.com/lite?q=%sAvailable Bookmarks:
gonew https://github.com/search?o=desc&q=language%3Ago+stars%3A1&repo=&s=updated&start_value=1&type=Repositories
gotrend https://github.com/trending/go
news https://news.ycombinator.com/
r https://reddit.com/r/golang/Flags:
-x dont open links, just print them
```### Copyright
Copyright 2017 aerth. All rights reserved.
Use of this source code is governed by a GPL-style
license that can be found in the [LICENSE](LICENSE.md) file.
### Contributing
Bugs/Issues addressed at [Github](https://github.com/aerth/helper/issues)
Contributions welcome. Please run `gofmt -w -l -s .` before your commit, Thanks!
### Known Issues
With bash, it is **highly recommended** to `set +H` to disable `!`-style history expansion.
If you actually use bash `!-3` to repeat the third most recent command, just single quote your bangs:```
helper '!gh language:go stars:<5'
```Other shells don't seem to have this issue.
You can add this to your `.bash_profile` or `.bashrc`:
```
# disable !-style history expansion for helper bangs (https://github.com/aerth/helper)
set +H
```