filesearch 0.1.0

A tool to find files and folders
Documentation
  • Coverage
  • 0%
    0 out of 3 items documented0 out of 2 items with examples
  • Size
  • Source code size: 11.27 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.34 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 28s Average build duration of successful builds.
  • all releases: 28s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • steph-crown/filesearch
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • steph-crown

filesearch

This is a CLI tool that allows you search for files that matches a given pattern within a directory. A simple version of find command.

Usage

filesearch <pattern> [directory]
  • <pattern> (required): Then search pattern to match against file names.

    • Can be a simple string, e.g. main
    • Can be a wildcard pattern, e.g. test-*, *.rs
    • Case sensitive
  • <directory> (optional): The directory to search (recursively) in.

    • Defaults to . (current working directory).
    • Must be a valid directory path
    • Example: ., ./src

Getting Help

To get more information about the tool, run:

filesearch --help

Or

filesearch -h