## Mini grep Console application Search text within files #### Built with rust --- ##### example Run the following command in your terminal ```bash cargo run -- frog poem.txt ``` ##### Result ``` How public, like a frog ``` The application expects two arguments 1. The text to search for 2. The path to the file that is being search --- This repository is a code along project to [chapter 10](https://doc.rust-lang.org/book/ch12-00-an-io-project.html) of the [The rust programming language book](https://nostarch.com/Rust2018)