saka_grep

Crates.iosaka_grep
lib.rssaka_grep
version0.0.1
sourcesrc
created_at2023-10-31 18:53:49.614755
updated_at2023-10-31 18:53:49.614755
descriptionsimple commandline utility to search contents in file
homepage
repository
max_upload_size
id1020257
size6,087
Sahil Kariyania (skariyania)

documentation

README

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

Commit count: 0

cargo fmt