2017-05-12 11:50:03 +02:00
|
|
|
# fd
|
2017-05-12 14:16:34 +02:00
|
|
|
[![Build Status](https://travis-ci.org/sharkdp/fd.svg?branch=master)](https://travis-ci.org/sharkdp/fd)
|
|
|
|
|
2017-05-13 10:21:38 +02:00
|
|
|
*fd* is a simple, fast and user-friendly alternative to [*find*](https://www.gnu.org/software/findutils/).
|
|
|
|
|
|
|
|
While it does not seek to mirror all of *find*'s powerful functionality, it provides sensible (opinionated)
|
|
|
|
defaults for [80%](https://en.wikipedia.org/wiki/Pareto_principle) of the use cases.
|
2017-05-09 23:45:02 +02:00
|
|
|
|
2017-05-12 14:16:34 +02:00
|
|
|
## Features
|
|
|
|
* Convenient syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`.
|
2017-05-13 10:21:38 +02:00
|
|
|
* Smart case: the search is case-insensitive by default. It switches to
|
|
|
|
case-sensitive if the pattern contains an uppercase
|
|
|
|
character[\*](http://vimdoc.sourceforge.net/htmldoc/options.html#'smartcase').
|
|
|
|
* Ignores hidden directories and files by default.
|
|
|
|
* Colorized terminal output (similar to *ls*).
|
|
|
|
* Regular expressions by default.
|
2017-05-12 19:21:26 +02:00
|
|
|
* Unicode-aware.
|
2017-05-13 10:21:38 +02:00
|
|
|
* The command name is *50%* shorter[\*](https://github.com/ggreer/the_silver_searcher) than `find` :-).
|
2017-05-09 23:29:14 +02:00
|
|
|
|
2017-05-13 00:05:00 +02:00
|
|
|
## Demo
|
2017-05-13 00:07:32 +02:00
|
|
|
|
2017-05-13 00:08:41 +02:00
|
|
|
<a href="https://asciinema.org/a/120318" target="_blank"><img src="https://asciinema.org/a/120318.png" width="600" align="center" /></a>
|
2017-05-09 23:35:34 +02:00
|
|
|
|
2017-05-14 20:18:17 +02:00
|
|
|
## Colorized output
|
|
|
|
*fd* can colorize files by extension, just like *ls*. In order for
|
|
|
|
this to work, you need to set up a `~/.dir_colors` file. The easiest
|
|
|
|
way is to call
|
|
|
|
```
|
|
|
|
dircolors --print-database > ~/.dir_colors
|
|
|
|
```
|
|
|
|
More complete (and more colorful) alternatives can be found
|
|
|
|
[here](https://github.com/seebi/dircolors-solarized) or
|
|
|
|
[here](https://github.com/trapd00r/LS_COLORS).
|
|
|
|
|
2017-05-13 10:46:22 +02:00
|
|
|
## Benchmark
|
|
|
|
A search in my home folder with ~80.000 subdirectories
|
|
|
|
and ~350.000 files. The `--hidden` for `fd` is needed
|
|
|
|
for a fair comparison, as *find* does this by default:
|
|
|
|
``` bash
|
|
|
|
> time fd --hidden '\.jpg$' > /dev/null
|
|
|
|
0,39s user 0,40s system 99% cpu 0,790 total
|
|
|
|
|
|
|
|
> time find -iname '*.jpg' > /dev/null
|
|
|
|
0,36s user 0,42s system 98% cpu 0,789 total
|
|
|
|
```
|
|
|
|
Both tools found the exact same 5504 files and have
|
|
|
|
a comparable performance (averaged over multiple runs),
|
|
|
|
even though *fd* performs a regex search.
|
|
|
|
If we do the same for *find*, it is significantly slower:
|
|
|
|
``` bash
|
|
|
|
> time find -iregex '.*\.jpg$' > /dev/null
|
|
|
|
1,29s user 0,41s system 99% cpu 1,705 total
|
|
|
|
```
|
|
|
|
|
2017-05-14 20:07:59 +02:00
|
|
|
## Install
|
|
|
|
With [cargo](https://github.com/rust-lang/cargo), you can clone, build and install *fd* with a single command:
|
|
|
|
```
|
|
|
|
cargo install --git https://github.com/sharkdp/fd
|
|
|
|
```
|
|
|
|
The release page of this repository also includes precompiled binaries for Linux.
|
2017-05-13 10:46:22 +02:00
|
|
|
|
2017-05-14 20:07:59 +02:00
|
|
|
## Development
|
2017-05-09 23:29:14 +02:00
|
|
|
```bash
|
2017-05-12 14:16:34 +02:00
|
|
|
cargo build --release
|
2017-05-09 23:29:14 +02:00
|
|
|
```
|