https://github.com/priler/minigrep
Very small grep alternative written in Rust as a tutorial project.
https://github.com/priler/minigrep
Last synced: 4 months ago
JSON representation
Very small grep alternative written in Rust as a tutorial project.
- Host: GitHub
- URL: https://github.com/priler/minigrep
- Owner: Priler
- Created: 2023-01-14T14:34:11.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-14T14:59:16.000Z (over 3 years ago)
- Last Synced: 2025-10-09T12:04:59.436Z (8 months ago)
- Language: Rust
- Homepage:
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# minigrep
Very small grep alternative written in Rust as a tutorial project.
# Usage
`minigrep to poem.txt` for a case-sensitive search.
`minigrep to poem.txt -i` for non case-sensitive search.
# ToDo
- add [indicatif](https://crates.io/crates/indicatif) for a large text files (i.e. > 100 lines)
- multiple files search/glob
- regex support?
- benchmarks :3