1
0
mirror of https://github.com/sharkdp/fd synced 2024-07-01 07:14:22 +00:00
Go to file
2017-05-12 13:02:20 +02:00
src Colored output, closes #8 2017-05-12 13:02:20 +02:00
.gitignore Re-write in rust 2017-05-12 11:50:54 +02:00
Cargo.lock Colored output, closes #8 2017-05-12 13:02:20 +02:00
Cargo.toml Colored output, closes #8 2017-05-12 13:02:20 +02:00
LICENSE Initial commit 2017-05-09 23:27:10 +02:00
README.md Re-write in rust 2017-05-12 11:50:54 +02:00

fd

A modern, convenient and fast replacement for find.

Features:

  • Easy syntax: fd PATTERN instead of find -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