Find Files (ff)

Build Status Version info

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 for your platform from the releases page.

If you're a Rust programmer, download and install ff command using cargo install find-files.

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, --ignore-hidden Ignore searching hidden files and directories. By default, hidden files and directories are included in the search results. -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

./.git/COMMIT_EDITMSG

omitted other results

```

ff emacs -H