https://github.com/yoonge/minigrep
A simplified grep command-line tool called minigrep built with Rust.
https://github.com/yoonge/minigrep
cli minigrep rust
Last synced: 9 months ago
JSON representation
A simplified grep command-line tool called minigrep built with Rust.
- Host: GitHub
- URL: https://github.com/yoonge/minigrep
- Owner: yoonge
- License: mit
- Created: 2024-02-03T10:51:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-04T14:37:33.000Z (about 2 years ago)
- Last Synced: 2025-01-26T16:44:12.803Z (over 1 year ago)
- Topics: cli, minigrep, rust
- Language: Rust
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ⌨️ Minigrep
[](https://github.com/yoonge/minigrep)  [](./LICENSE)  
## 💡 Introduction
A simplified grep command-line tool called minigrep built with Rust.
## 🔰 Getting Started
```sh
$ git clone https://github.com/yoonge/minigrep.git
$ cd minigrep
$ cargo run software LICENSE
$ CASE_INSENSITIVE=1 cargo run software LICENSE
```
## 📄 License
Minigrep is [MIT-licensed](./LICENSE).
----
## 🏗️ Scaffold
```sh
$ cargo init minigrep && cd minigrep
```