mirror of
https://github.com/sharkdp/fd
synced 2024-11-02 09:55:40 +00:00
401 B
401 B
fd
A modern, convenient and fast replacement for find
.
Features:
- Easy syntax:
fd PATTERN
instead offind -iname '*PATTERN*'
. - Colored output.
- Regular expressions.
- The command name is 50% shorter than
find
:-).
Examples
> fd
README.md
src
src/main.rs
Cargo.toml
LICENSE
Cargo.lock
> fd rs
src/main.rs
> fd '^[A-Z]+$'
LICENSE
Build
cargo build