fzq

Crates.iofzq
lib.rsfzq
version0.1.0
sourcesrc
created_at2019-08-10 09:10:59.573049
updated_at2019-08-10 09:10:59.573049
descriptionFuzzy filter matching lines
homepagehttps://github.com/nkzawa/fzq
repositoryhttps://github.com/nkzawa/fzq
max_upload_size
id155570
size16,133
Naoyuki Kanezawa (nkzawa)

documentation

https://docs.rs/fzq

README

fzq

fzq is a command-line tool for filtering fuzzy matching lines. It also offers a library to find approximate string from a sequence. It's useful when you want to get a summary from a log file, for example.

$ fzq many.log

# Or read from stdin
$ cat many.log | fzq

# With different string metric and threshold
$ fzq --metric Levenshtein --threshold 0.7 many.log

# See help for more options
$ fzq -h

Installation

Using cargo for Rust programmers

$ cargo install fzq

License

MIT or Apache-2.0

Commit count: 2

cargo fmt