Minigrep is an open source implementation of the grep tool in pure rust it is very simple and is based on "The Book" by the rust team. It encompasses a lot of rust topics and covers a lot of content.
First clone this repository
git clone https://github.com/techstrix/minigrep.git
cd minigrep
Follow the rust installation tutorial from the rust official website to install rust on your machine
cargo run -- [string to be found] [filename]
This is in no way a real project but rather something to toy with rust