ripfind

A fast and lean replacement for the find command, modeled after the ripgrep package (https://github.com/BurntSushi/ripgrep).

Installation

Install with Cargo (https://crates.io):

$ cargo install ripfind

Usage:

``` Usage: rf [regex] [dir] [options]

Options: -i, --ignore-case Search case insensitively. -s, --sensitive-case Search case sensitively. -h, --help Print this help menu. -v, --version Print version. --color Color output. WHEN can be never, always, or auto. --type Filter file type. can be: d - directory f - regular file l - symbolic link. ```

Prints all files matching regex in the directory dir. All parameters are optional. If dir is not provided, ripfind will search in the current directory. If regex is not provided, ripfind will print all files.