An open API service indexing awesome lists of open source software.

https://github.com/gharib110/rustygrep

The grep cmd in GNU Linux Operating Systems that is implemented in Rust
https://github.com/gharib110/rustygrep

command-line-tool grep linux-tools rust rust-lang

Last synced: 11 months ago
JSON representation

The grep cmd in GNU Linux Operating Systems that is implemented in Rust

Awesome Lists containing this project

README

          

# RustyGrep
The grep cmd in GNU Linux Operating Systems that is implemented in Rust

## Example
`` cargo run to ./file.txt ``
This Command search 'to' in the file.txt.

The first argument is the search query and the second argument is the file path which could be a relative or an absolute path.
The Content of the file:
```
Hello Where is it?
He is going to the shop !
```
The Output:
```
search result of to in ./file.txt
He is going to the shop !
```