dariodip_grrs

Crates.iodariodip_grrs
lib.rsdariodip_grrs
version0.1.0
sourcesrc
created_at2022-10-17 16:27:14.595385
updated_at2022-10-17 16:27:14.595385
descriptionA tool to search files
homepagehttps://github.com/dariodip/grrs
repositoryhttps://github.com/dariodip/grrs
max_upload_size
id690227
size25,092
Dario Di Pasquale (dariodip)

documentation

README

Contributors Issues MIT License LinkedIn


Logo

grrs

`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

About The Project

grrs has been created by following the book Command Line Applications in Rust.

(back to top)

Built With

  • Rust

(back to top)

Git hooks configuration

Execute this command to setup git hooks:

git config --local core.hooksPath ./hooks

Getting started

Usage

A typical invocation of grss will look like this:

$ cat text.txt
	foo: 1
	bar: 2
	foobar: 3

$ grrs foobar text.txt
	foobar: 3
Commit count: 8

cargo fmt