litegrep 0.1.2

A basic tool for searching in files for lines of text, based on a query.
Documentation
  • Coverage
  • 44.44%
    4 out of 9 items documented2 out of 5 items with examples
  • Size
  • Source code size: 6.15 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 310.39 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • igdev0

Minigrep

This tool is the light version of the grep, developed while studing the rust book. It contains basic functionality for searching within a file from the command line.

Usage

This project uses cargo as the package manager, therefore to run the program:

Run dev

cargo run -- [search query] [filepath] [opts]

Options

The only option available is --case-sensitive. This option enables you to search for words no matter the case of the letters, you can also set it as an environment variable as IGNORE_CASE=true.

Tests

cargo test