# Search File This is a grep like tool for searching lines which contains a given keyword in a file. ## Installation
Using Prebuilt Binaries -
With Bash ```sh curl -fsSL "https://bina.egoist.dev/imranbarbhuiya/search_file" | sh ``` > Using [Bina](https://bina.egoist.dev/)
-
Manual Installation Prebuilt binaries are available for Windows, Linux, and macOS and can be found attached to the [latest release](https://github.com/imranbarbhuiya/search_file/releases/latest).
Building From Source Install [Rust](https://www.rust-lang.org/tools/install) and then run: ```sh cargo install search_file ```

## Usage ```sh # Case sensitive match search_file # Case insensitive match IGNORE_CASE=1 search_file ```
This is my first rust project. So I'm just learning how to create a rust project and publish it to crate.io.