Crates.io | ripfind |
lib.rs | ripfind |
version | 0.4.2 |
source | src |
created_at | 2018-12-14 02:14:04.750238 |
updated_at | 2023-10-26 14:20:47.568484 |
description | A fast and lean replacement for the find command. |
homepage | https://github.com/matthiasdiener/ripfind |
repository | https://github.com/matthiasdiener/ripfind |
max_upload_size | |
id | 101827 |
size | 15,442 |
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 <WHEN> Color output.
WHEN can be never, always, or auto.
--type <TYPE> Filter file type.
<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.