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.
Download the latest executable ff
binary from the releases page.
```
USAGE:
ff [FLAGS]
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:
$PWD
]
```
There are a tons of possibilities to search files using ff
.
Following examples demonstrate just a tip of an iceberg.
main
string.
ff main
.png
, or .PNG
extension.
ff \.png$
.PNG
extension.
ff -s \.PNG$
ff "\.(png|jpg|jpeg|gif|svg)"
controllers
string.
ff controllers
.js
files in ./spec
directory.
ff \.js ./spec
.git
directory whose name contains commit
or something similar.```bash $ ff git.*commit -H
./.git/COMMIT_EDITMSG
```