saka_grep 0.0.1

simple commandline utility to search contents in file
Documentation
  • Coverage
  • 0%
    0 out of 8 items documented0 out of 7 items with examples
  • Size
  • Source code size: 6.08 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 173.36 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
  • skariyania
to run this tutorual use below command
$ cargo run -- nobody poem.txt
  • cargo run builds and executes runnable
  • -- indicates cargo that after this part, argument should go to runnable
  • nobody is a search term
  • poem.txt is a file name

we are searching for string nobody in file poem.txt with above command