A fast and lean replacement for the find command, modeled after the ripgrep package (https://github.com/BurntSushi/ripgrep).
Install with Cargo (https://crates.io):
$ cargo install ripfind
``` 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
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.