Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthiasdiener/ripfind
A fast and lean replacement for the find command.
https://github.com/matthiasdiener/ripfind
Last synced: 10 days ago
JSON representation
A fast and lean replacement for the find command.
- Host: GitHub
- URL: https://github.com/matthiasdiener/ripfind
- Owner: matthiasdiener
- License: mit
- Created: 2018-12-13T22:35:59.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2023-10-26T14:21:19.000Z (about 1 year ago)
- Last Synced: 2024-10-05T21:04:44.287Z (about 1 month ago)
- Language: Rust
- Size: 26.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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 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.