fd/README.md

37 lines
473 B
Markdown
Raw Normal View History

2017-05-09 23:27:10 +02:00
# fnd
2017-05-09 23:45:36 +02:00
A modern, convenient and fast replacement for `find`.
2017-05-09 23:45:02 +02:00
**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 23:29:14 +02:00
2017-05-09 23:35:34 +02: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
```
## Dependencies
* g++ `>=4.9`
2017-05-10 10:09:29 +02:00
* boost `>=1.60`
2017-05-09 23:29:14 +02:00
## Build
```bash
cmake .
make
```