2017-05-12 09:50:03 +00:00
|
|
|
# fd
|
2017-05-09 21:45:36 +00:00
|
|
|
A modern, convenient and fast replacement for `find`.
|
2017-05-09 21:45:02 +00:00
|
|
|
|
|
|
|
**Features:**
|
2017-05-12 09:50:03 +00:00
|
|
|
* Easy syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`.
|
2017-05-09 21:45:02 +00:00
|
|
|
* Colored output.
|
|
|
|
* Regular expressions.
|
2017-05-12 09:50:03 +00:00
|
|
|
* The command name is *50%* shorter than `find` :-).
|
2017-05-09 21:29:14 +00:00
|
|
|
|
2017-05-09 21:35:34 +00:00
|
|
|
## Examples
|
|
|
|
``` bash
|
2017-05-12 09:50:03 +00:00
|
|
|
> fd
|
2017-05-09 21:35:34 +00:00
|
|
|
README.md
|
2017-05-12 09:50:03 +00:00
|
|
|
src
|
|
|
|
src/main.rs
|
|
|
|
Cargo.toml
|
2017-05-09 21:35:34 +00:00
|
|
|
LICENSE
|
2017-05-12 09:50:03 +00:00
|
|
|
Cargo.lock
|
2017-05-09 21:35:34 +00:00
|
|
|
|
2017-05-12 09:50:03 +00:00
|
|
|
> fd rs
|
|
|
|
src/main.rs
|
2017-05-09 21:35:34 +00:00
|
|
|
|
2017-05-12 09:50:03 +00:00
|
|
|
> fd '^[A-Z]+$'
|
2017-05-09 21:35:34 +00:00
|
|
|
LICENSE
|
|
|
|
```
|
|
|
|
|
2017-05-09 21:29:14 +00:00
|
|
|
## Build
|
|
|
|
```bash
|
2017-05-12 09:50:03 +00:00
|
|
|
cargo build
|
2017-05-09 21:29:14 +00:00
|
|
|
```
|