An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# ⌨️ Minigrep

[![Minigrep Rust](https://img.shields.io/badge/Minigrep-Rust-orange)](https://github.com/yoonge/minigrep) ![version](https://img.shields.io/badge/version-0.2.0-yellow) [![license](https://img.shields.io/badge/license-MIT-blue)](./LICENSE) ![rust](https://img.shields.io/badge/rust-1.76.0-green.svg) ![cargo](https://img.shields.io/badge/cargo-1.76.0-purple.svg)

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