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

https://github.com/priler/minigrep

Very small grep alternative written in Rust as a tutorial project.
https://github.com/priler/minigrep

Last synced: 4 months ago
JSON representation

Very small grep alternative written in Rust as a tutorial project.

Awesome Lists containing this project

README

          

# minigrep
Very small grep alternative written in Rust as a tutorial project.

# Usage
`minigrep to poem.txt` for a case-sensitive search.

`minigrep to poem.txt -i` for non case-sensitive search.

# ToDo
- add [indicatif](https://crates.io/crates/indicatif) for a large text files (i.e. > 100 lines)
- multiple files search/glob
- regex support?
- benchmarks :3