Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wjchumble/minigrep
A mini version of grep written in Rust.
https://github.com/wjchumble/minigrep
Last synced: 4 days ago
JSON representation
A mini version of grep written in Rust.
- Host: GitHub
- URL: https://github.com/wjchumble/minigrep
- Owner: WJCHumble
- Created: 2022-02-27T03:30:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-27T05:23:27.000Z (almost 3 years ago)
- Last Synced: 2025-02-10T19:05:19.837Z (4 days ago)
- Language: Rust
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## minigrep
A mini version of grep written in Rust. And it's also an example for validating my small step-by-step results of learning rust, which is refer from [here](https://doc.rust-lang.org/book/ch12-00-an-io-project.html).
## Usage
Finds string in the contents of the specified file. For example, look for `to` in the contents of `poem.txt`:
```bash
cargo run to poem.tx
```