Crates.io | search-once |
lib.rs | search-once |
version | 0.1.1 |
source | src |
created_at | 2024-01-08 13:53:44.276288 |
updated_at | 2024-01-09 13:20:52.000335 |
description | A tool to search multiple websites at once |
homepage | https://github.com/sankichi92/search-once |
repository | https://github.com/sankichi92/search-once |
max_upload_size | |
id | 1092554 |
size | 20,427 |
A command line application to search multiple websites at once.
$ cargo install search-once
If you use it on WSL (Windows Subsystem for Linux), you'll require the wslview
command included in wslu.
$ 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
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.
Cargo.toml
.