eaverdeja-minigrep 0.1.1

minigrep from chapter 12 of the Rust lang book
Documentation
1
2
3
4
5
6
7
8
# minigrep

`minigrep` is a toy CLI application developed in [chapter 12 of the Rust Lang book](https://rust-book.cs.brown.edu/ch12-00-an-io-project.html).

It searches for a given query string in a file, and prints out any lines containing the query string.
Supports both case-sensitive and case-insensitive searches.

Fun stuff.