minigrep_crate 0.1.0

A simple grep like console application
Documentation
  • Coverage
  • 22.22%
    2 out of 9 items documented2 out of 5 items with examples
  • Size
  • Source code size: 4.82 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.33 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • sammyl720

Mini grep Console application

Search text within files

Built with rust


example

Run the following command in your terminal

cargo run -- frog poem.txt 

Result
How public, like a frog

The application expects two arguments

  1. The text to search for
  2. The path to the file that is being search

This repository is a code along project to chapter 10 of the The rust programming language book