##### 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