# This is educatation project `grep`
### How to install:
#### core `grep`
```
cargo install core-grep
```
#### grep `search`
```
cargo add grep-search
```
### Example of using `grep`:
```
grep [options] [query] [path]
```
#### Options:
-i -- ignore case
-c -- count lines
-v -- invert match
-n -- numbers the lines
-help -- help
-version -- show version grep
#### Version `grep` -- 0.1.8
#### Note:
- This is my first big project
#### Links
- crates.io core grep - https://crates.io/crates/core-grep
- crates.io search grep - https://crates.io/crates/grep-search
- github grep - https://github.com/mike0top/grep-on-the-rust
#### Update version -- 0.1.8
- Add flag -v -- invert match
- Update README.md