An open API service indexing awesome lists of open source software.

https://github.com/realpacific/super-search-rust

Mouse-less-ishly search websites using CLI.
https://github.com/realpacific/super-search-rust

cargo cli rust rust-lang

Last synced: 5 months ago
JSON representation

Mouse-less-ishly search websites using CLI.

Awesome Lists containing this project

README

        

# Welcome to Super Search 👋

[![Version](https://img.shields.io/crates/v/ssearch)](https://img.shields.io/crates/v/ssearch)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](/LICENSE.md)

![Super Search Logo](./ssearch.png)

*Mouse-less-ishly search websites using CLI.*
* Search Google using `ssearch --go How to rust`
* Search GitHub using `ssearch --gh rust`

...and so on

## Installation
```shell script
cargo install ssearch
```

## Usage

| Operation | Syntax | Example |
|------------|-------------------|------------|
| Adding keywords | `ssearch add -k -q -d `| ssearch add -k rd -q https://www.reddit.com/r/rust/search/?q= -d Reddit Search |
| Searching | `ssearch -- ` | `ssearch --rd how to rust` |
| Deleting keyword | `ssearch del -k ` | `ssearch del -k rd` |
| Getting help | `ssearch help` | |
| List all keywords | `ssearch ls` | |

## During development
Run super search directly from terminal
```shell script
cargo run --
```
Examples:
```shell script
cargo run -- --help
cargo run -- --yt How to rust
cargo run -- add -k rd -q https://www.reddit.com/r/rust/search/?q= -d Reddit Search
```