Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/wjchumble/minigrep

A mini version of grep written in Rust.
https://github.com/wjchumble/minigrep

Last synced: 4 days ago
JSON representation

A mini version of grep written in Rust.

Awesome Lists containing this project

README

        

## minigrep

A mini version of grep written in Rust. And it's also an example for validating my small step-by-step results of learning rust, which is refer from [here](https://doc.rust-lang.org/book/ch12-00-an-io-project.html).

## Usage

Finds string in the contents of the specified file. For example, look for `to` in the contents of `poem.txt`:

```bash
cargo run to poem.tx
```