Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/diepala/minigrep


https://github.com/diepala/minigrep

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# MiniGrep

MiniGrep is a simple grep clone written in Rust.

## Usage

```bash
cargo run --
```

To do a case-insensitive search, set the `IGNORE_CASE` environment variable:

```bash
IGNORE_CASE=1 cargo run --
```

## Testing

```bash
cargo test
```

## Credits

This project is based on the [Rust Book](https://doc.rust-lang.org/book/ch12-00-an-io-project.html).