rcrawl 1.2.0

A command line program which recursively searches for a named file or directory - built with rust (Similar to the UNIX find command)

Recursively searches for a given file or directory and prints its full path to stdout

```_ USAGE: rcrawl [FLAGS] [OPTIONS]

FLAGS: -h, --help Prints help information -R, --regex A flag indicating wether the search expression is a regular expression -r, --relative A flag indicating that relative rather than full files paths should be returned -s, --single A flag indicating only the first found item should be output (equivalent to --max_items 1) -V, --version Prints version information

OPTIONS: -d, --maxdepth The maximum depth to recursively search to -i, --maxitems The maximum number of results to return -t, --threads The number of threads to use to search for

ARGS: The name of the file/directory to search fo ```