#search #file #command-line #content #utility #command-line-tool #txt-file

bin+lib saka_grep

simple commandline utility to search contents in file

1 unstable release

0.0.1 Oct 31, 2023

#36 in #txt-file

MIT license

4KB
95 lines

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

No runtime deps