2 releases
0.1.1 | Jan 9, 2024 |
---|---|
0.1.0 | Jan 8, 2024 |
#2911 in Command line utilities
8KB
51 lines
search-once
A command line application to search multiple websites at once.
Installation
$ cargo install search-once
If you use it on WSL (Windows Subsystem for Linux), you'll require the wslview
command included in wslu.
Usage
$ search-once --help
A tool to search multiple websites at once
Usage: search-once [OPTIONS] <QUERY>
Arguments:
<QUERY>
Options:
-c, --config <FILE>
-h, --help Print help
-V, --version Print version
Configuration
You can customize search sites via a YAML configuration file with the following format:
sites:
- name: GitHub Rust repos
url: https://github.com/search?q=language%3ARust+%s&type=repositories
- name: Crates.io
url: https://crates.io/search?q=%s
The %s
placeholder in the URL will be replaced with your query.
The default configuration file will be automatically placed in the appropriate path based on your OS. You can find the path by running search-once <QUERY>
without the --config
option.
Development
Publishing a new version
- Bump the version in
Cargo.toml
. - Create a git commit, push it, and ensure that the CI passes.
- Create a git tag for the new version and push it, then the Crates.io workflow starts.
Dependencies
~3–4MB
~76K SLoC