/minigrep

Very small grep alternative written in Rust as a tutorial project.

Primary LanguageRust

minigrep

Very small grep alternative written in Rust as a tutorial project.

Usage

minigrep to poem.txt for a case-sensitive search.
minigrep to poem.txt -i for non case-sensitive search.

ToDo

  • add indicatif for a large text files (i.e. > 100 lines)
  • multiple files search/glob
  • regex support?
  • benchmarks :3