mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-03 13:01:01 +01:00
33 lines
425 B
Markdown
33 lines
425 B
Markdown
# fnd
|
|
A modern, convenient and fast replacement for `find`.
|
|
|
|
**Features:**
|
|
* Easy syntax. `fnd PATTERN` instead of `find -iname '*PATTERN*'`.
|
|
* Colored output.
|
|
* Regular expressions.
|
|
* The command name is *25%* shorter than `find` :-).
|
|
|
|
## Examples
|
|
``` bash
|
|
> fnd
|
|
src
|
|
src/fnd.cpp
|
|
README.md
|
|
LICENSE
|
|
CMakeLists.txt
|
|
|
|
> fnd cpp
|
|
src/fnd.cpp
|
|
|
|
> fnd '[A-Z].*'
|
|
README.md
|
|
LICENSE
|
|
CMakeLists.txt
|
|
```
|
|
|
|
## Build
|
|
```bash
|
|
cmake .
|
|
make
|
|
```
|