13 个版本

0.4.2 2023年10月26日
0.4.1 2023年7月11日
0.4.0 2022年6月21日
0.3.3 2021年11月24日
0.2.0 2018年12月14日

#217 in 文件系统

29 每月下载量

MIT 许可证

8KB
141 代码行

ripfind

find 命令的快速且精简替代品,模仿 ripgrep 包(https://github.com/BurntSushi/ripgrep)。

安装

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

在目录 dir 中打印所有匹配正则表达式 regex 的文件。所有参数都是可选的。如果未提供 dir,ripfind 将在当前目录中搜索。如果未提供 regex,ripfind 将打印所有文件。

依赖

~3–11MB
~101K SLoC