Introduction
This is a small implementation of grep command line tool in rust (see References).
Unlike grep this implementation does not support regex.
For complete implementation of grep in rust, check ripgrep.
Installation
Updated soon.
Usage
For searching QUERY pattern in FILE_PATH use following command:
graby --q QUERY --f FILE_PATH
For more options run
graby --help
It is licensed under MIT.
How to Contribute
All small or large contributions are welcomed .
References
ch-12 rust-lang book, Command Line Applications in Rust