rfind 0.2.0

A simple clone of the `find` command
Documentation
  • Coverage
  • 0%
    0 out of 6 items documented0 out of 5 items with examples
  • Size
  • Source code size: 10.17 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.8 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 21s Average build duration of successful builds.
  • all releases: 21s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • kappq/rfind
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • kappq

rfind

rfind is a simple clone of the find command written in Rust.

Getting Started

Install the program with cargo:

cargo install rfind

Usage

The usage is very similar to the find command, but a lot simpler. Type rfind --help to see an help message.

rfind 0.2.0
Kappa <f.cappetti.05@gmail.com>
A simple clone of the `find` command

USAGE:
    rfind [OPTIONS] [STARTING-POINT]...

ARGS:
    <STARTING-POINT>...    The starting-point of the program [default: .]

OPTIONS:
    -h, --help           Print help information
    -n, --name <NAME>    The regex to match
    -t, --type <TYPE>    The type of the file [possible values: f, d, l]
    -V, --version        Print version information

To-Do

  • Testing.
  • Improve error handling.
  • Improve CLI interface and argument parsing.
  • Multiple starting points.
  • Options for size, modification date, permission and owner.
  • Delete files.