Crates.io | dariodip_grrs |
lib.rs | dariodip_grrs |
version | 0.1.0 |
source | src |
created_at | 2022-10-17 16:27:14.595385 |
updated_at | 2022-10-17 16:27:14.595385 |
description | A tool to search files |
homepage | https://github.com/dariodip/grrs |
repository | https://github.com/dariodip/grrs |
max_upload_size | |
id | 690227 |
size | 25,092 |
`grrs` (pronunced "grass) is a `grep` clone. We can give a string and a path and it’ll print only the lines that contain the given string.
Report Bug
·
Request Feature
grrs
has been created by following the book Command Line Applications in Rust.
Execute this command to setup git hooks:
git config --local core.hooksPath ./hooks
A typical invocation of grss
will look like this:
$ cat text.txt
foo: 1
bar: 2
foobar: 3
$ grrs foobar text.txt
foobar: 3