saka_grep 0.0.1

simple commandline utility to search contents in file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

##### to run this tutorual use below command

```sh
$ cargo run -- nobody poem.txt
```
- cargo run builds and executes runnable
- `--` indicates cargo that after this part, argument should go to runnable
- nobody is a search term
- poem.txt is a file name

> we are searching for string `nobody` in file `poem.txt` with above command