1
0
mirror of https://github.com/sharkdp/fd synced 2024-07-08 12:06:43 +00:00
fd/README.md

33 lines
425 B
Markdown
Raw Normal View History

2017-05-09 21:27:10 +00:00
# fnd
2017-05-09 21:45:02 +00:00
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` :-).
2017-05-09 21:29:14 +00:00
2017-05-09 21:35:34 +00:00
## 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
```
2017-05-09 21:29:14 +00:00
## Build
```bash
cmake .
make
```