mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-18 18:00:35 +01:00
32 lines
535 B
Markdown
32 lines
535 B
Markdown
# fd
|
|
A modern, convenient and fast replacement for `find`.
|
|
|
|
**Features:**
|
|
* Easy syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`.
|
|
* Colored output.
|
|
* Regular expressions.
|
|
* Smart case: the search is case-insensitive by default, but will be
|
|
case-sensitive if the pattern contains an uppercase character.
|
|
* The command name is *50%* shorter than `find` :-).
|
|
|
|
## Examples
|
|
``` bash
|
|
> fd
|
|
README.md
|
|
src
|
|
src/main.rs
|
|
Cargo.toml
|
|
LICENSE
|
|
Cargo.lock
|
|
|
|
> fd rs
|
|
src/main.rs
|
|
|
|
> fd '^[A-Z]+$'
|
|
LICENSE
|
|
```
|
|
|
|
## Build
|
|
```bash
|
|
cargo build
|
|
```
|