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-06-02 20:34:02 +02:00
|
|
|
*fd* is a simple, fast and user-friendly alternative to
|
|
|
|
[*find*](https://www.gnu.org/software/findutils/).
|
2017-05-13 10:21:38 +02:00
|
|
|
|
2017-06-02 20:34:02 +02:00
|
|
|
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').
|
|
|
|
* Colorized terminal output (similar to *ls*).
|
2017-06-02 20:42:55 +02:00
|
|
|
* Ignores hidden directories and files, by default.
|
|
|
|
* Ignores patterns from your `.gitignore`, by default.
|
|
|
|
* Regular expressions.
|
|
|
|
* Unicode-awareness.
|
2017-06-02 20:34:02 +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-14 21:58:52 +02:00
|
|
|
![Demo](http://i.imgur.com/iU6qkQj.gif)
|
2017-05-09 23:35:34 +02:00
|
|
|
|
2017-05-14 20:18:17 +02:00
|
|
|
## Colorized output
|
2017-06-02 20:34:02 +02:00
|
|
|
`fd` can colorize files by extension, just like `ls`. In order for this to work, the environment
|
|
|
|
variable [`LS_COLORS`](https://linux.die.net/man/5/dir_colors) has to be set. Typically, the value
|
|
|
|
of this variable is set by the `dircolors` command which provides a convenient configuration format
|
|
|
|
to define colors for different file formats.
|
|
|
|
On most distributions, `LS_COLORS` should be set already. If you are looking for alternative, more
|
|
|
|
complete (and more colorful) variants, see
|
2017-05-14 20:18:17 +02:00
|
|
|
[here](https://github.com/seebi/dircolors-solarized) or
|
|
|
|
[here](https://github.com/trapd00r/LS_COLORS).
|
|
|
|
|
2017-05-13 10:46:22 +02:00
|
|
|
## Benchmark
|
2017-06-02 22:23:27 +02:00
|
|
|
A search in my home folder with ~150.000 subdirectories and ~1M files. The given options for
|
2017-06-09 15:04:40 +02:00
|
|
|
`fd` are needed for a fair comparison (otherwise `fd` is even faster by a factor of 5 because it
|
2017-06-02 22:23:27 +02:00
|
|
|
does not have to search hidden and ignored paths):
|
2017-06-09 15:04:40 +02:00
|
|
|
```
|
|
|
|
benchmarking bench/fd --hidden --no-ignore --full-path '.*[0-9]\.jpg$' ~
|
|
|
|
time 2.800 s (2.722 s .. 2.895 s)
|
|
|
|
1.000 R² (1.000 R² .. 1.000 R²)
|
|
|
|
mean 2.821 s (2.810 s .. 2.831 s)
|
|
|
|
std dev 16.52 ms (0.0 s .. 17.02 ms)
|
|
|
|
variance introduced by outliers: 19% (moderately inflated)
|
2017-05-13 10:46:22 +02:00
|
|
|
|
2017-06-09 15:04:40 +02:00
|
|
|
benchmarking bench/find ~ -iregex '.*[0-9]\.jpg$'
|
|
|
|
time 5.593 s (5.412 s .. 5.798 s)
|
|
|
|
1.000 R² (0.999 R² .. 1.000 R²)
|
|
|
|
mean 5.542 s (5.502 s .. 5.567 s)
|
|
|
|
std dev 37.32 ms (0.0 s .. 42.77 ms)
|
|
|
|
variance introduced by outliers: 19% (moderately inflated)
|
2017-05-13 10:46:22 +02:00
|
|
|
```
|
2017-06-09 15:04:40 +02:00
|
|
|
(benchmarking tool: [bench](https://github.com/Gabriel439/bench))
|
|
|
|
|
|
|
|
Both tools found the exact same 14030 files. Note that we have used the `-iregex` option for `find`
|
|
|
|
in order for both tools to perform a regular expression search. Both tools are comparably fast if
|
|
|
|
`-iname '*[0-9].jpg'` is used for `find`.
|
2017-05-13 10:46:22 +02:00
|
|
|
|
2017-05-14 20:07:59 +02:00
|
|
|
## Install
|
2017-06-15 12:25:16 +02:00
|
|
|
With Rust's package manager [cargo](https://github.com/rust-lang/cargo), you can clone, build and install *fd* with a single command:
|
2017-05-14 20:07:59 +02:00
|
|
|
```
|
|
|
|
cargo install --git https://github.com/sharkdp/fd
|
|
|
|
```
|
2017-06-06 20:47:11 +02:00
|
|
|
Note that rust version *1.16.0* or later is required.
|
2017-05-14 20:07:59 +02:00
|
|
|
The release page of this repository also includes precompiled binaries for Linux.
|
2017-05-13 10:46:22 +02:00
|
|
|
|
2017-06-15 12:25:16 +02:00
|
|
|
On **OS X**, you can use [homebrew](https://brew.sh/):
|
|
|
|
```
|
|
|
|
brew install fd
|
|
|
|
```
|
|
|
|
|
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
|
|
|
```
|