Release Language Stars Issues Forks

Key FeaturesInstallationUsageContributorsLicense

With the intention to learn rust further, we followed some tutorials and one was about creating a little "grep" clone. After a bit of coding we had so much fun, that we expanded the project further...

## **Key Features** - Search for a certain string - Locate a certain file --- ## **Installation** If you just want to use the tool, you can download the [latest release](https://github.com/ValuONE/search/releases/tag/v1.1.0) and execute it via a command line. ``` bash # Locate the search.exe and execute it search.exe --help ``` Alternatively you can download the repository and compile it yourself. ``` bash # Clone the repository git clone https://github.com/ValuONE/search # Build the project cargo build --release ``` It will create an executable in `target/release`! Or simply do `cargo install search` --- ## **Usage** To get started just type ``search.exe --help`` you should now see this output: ```cmd Usage: search.exe Commands: locate Locate a file on your computer find Find a string in a file help Print this message or the help of the given subcommand(s) Options: -h, --help Print help -V, --version Print version ``` --- ## Contributors - [Lume](https://github.com/Lume1234) - [valu](https://github.com/ValuONE) --- ## **License** [![GitHub license](https://img.shields.io/github/license/pr4k/locate)](https://github.com/pr4k/locate) - **[MIT license](http://opensource.org/licenses/mit-license.php)** - Copyright 2023 © ValuONE ---