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
|
|
|
|
```
|
|
|
|
|
2017-05-10 09:56:25 +02:00
|
|
|
## Dependencies
|
|
|
|
* g++ `>=4.9`
|
|
|
|
* boost `>=1.54`
|
|
|
|
|
2017-05-09 23:29:14 +02:00
|
|
|
## Build
|
|
|
|
```bash
|
|
|
|
cmake .
|
|
|
|
make
|
|
|
|
```
|