ripfind

Crates.ioripfind
lib.rsripfind
version0.4.2
sourcesrc
created_at2018-12-14 02:14:04.750238
updated_at2023-10-26 14:20:47.568484
descriptionA fast and lean replacement for the find command.
homepagehttps://github.com/matthiasdiener/ripfind
repositoryhttps://github.com/matthiasdiener/ripfind
max_upload_size
id101827
size15,442
Matthias Diener (matthiasdiener)

documentation

https://github.com/matthiasdiener/ripfind

README

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 <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.

Commit count: 27

cargo fmt