1 unstable release
0.0.1 | Oct 31, 2023 |
---|
#36 in #txt-file
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 filepoem.txt
with above command