Find Files (ff)

Find Files (ff) utility recursively searches the files whose names match the specified RegExp pattern in the provided directory (defaults to the current directory if not provided).

Dual-licensed under MIT or the UNLICENSE.

Screenshot

Screenshot

Installation

Download the latest executable ff binary from the releases page.

Usage

``` USAGE: ff [FLAGS] [ROOT_PATH]

FLAGS: -s, --case-sensitive Search case sensitively. By default, files are searched case insensitively. -h, --help Prints help information -H, --search-hidden Search hidden files and directories. By default, hidden files and directories are skipped. -V, --version Prints version information

ARGS: Find files whose name (path) matches this substring or the regular expression. Path to the directory to search files inside. [default: $PWD] ```

Examples

There are a tons of possibilities to search files using ff. Following examples demonstrate just a tip of an iceberg.

ff main

ff \.png$

ff -s \.PNG$

ff "\.(png|jpg|jpeg|gif|svg)"

ff controllers

ff \.js ./spec

```bash $ ff git.*commit -H

./.git/COMMIT_EDITMSG

omitted other results

```