2017-05-12 11:50:03 +02:00
# fd
2021-02-14 11:03:24 +01:00
2021-07-26 22:34:03 +02:00
[![CICD ](https://github.com/sharkdp/fd/actions/workflows/CICD.yml/badge.svg )](https://github.com/sharkdp/fd/actions/workflows/CICD.yml)
2017-09-17 13:17:40 +02:00
[![Version info ](https://img.shields.io/crates/v/fd-find.svg )](https://crates.io/crates/fd-find)
2023-02-02 02:36:05 +01:00
[[中文 ](https://github.com/cha0ran/fd-zh )]
2021-02-14 11:03:24 +01:00
[[한국어 ](https://github.com/spearkkk/fd-kor )]
2017-05-12 14:16:34 +02:00
2021-05-24 23:42:11 +02:00
`fd` is a program to find entries in your filesystem.
2021-02-14 11:17:04 +01:00
It is a simple, fast and user-friendly alternative to [`find` ](https://www.gnu.org/software/findutils/ ).
While it does not aim to support all of `find` 's powerful functionality, it provides sensible
(opinionated) defaults for a majority of use cases.
2017-05-09 23:45:02 +02:00
2024-02-07 09:29:43 +01:00
[Installation ](#installation ) • [How to use ](#how-to-use ) • [Troubleshooting ](#troubleshooting )
2017-05-12 14:16:34 +02:00
## Features
2021-02-14 10:55:30 +01:00
2021-02-14 11:17:04 +01:00
* Intuitive syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'` .
2021-02-14 11:22:10 +01:00
* Regular expression (default) and glob-based patterns.
* [Very fast ](#benchmark ) due to parallelized directory traversal.
2022-03-14 18:44:36 +01:00
* Uses colors to highlight different file types (same as `ls` ).
2021-02-14 19:50:50 +01:00
* Supports [parallel command execution ](#command-execution )
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').
2017-06-02 20:42:55 +02:00
* Ignores hidden directories and files, by default.
* Ignores patterns from your `.gitignore` , by default.
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
2018-01-28 13:32:26 +01:00
![Demo ](doc/screencast.svg )
2017-05-09 23:35:34 +02:00
2021-02-14 11:03:24 +01:00
## How to use
2017-10-06 16:31:04 +02:00
2017-10-22 19:16:49 +02:00
First, to get an overview of all available command line options, you can either run
2021-02-14 11:07:44 +01:00
[`fd -h` ](#command-line-options ) for a concise help message or `fd --help` for a more detailed
2017-10-22 19:16:49 +02:00
version.
2017-10-06 16:31:04 +02:00
2017-10-22 19:16:49 +02:00
### Simple search
2017-10-15 22:27:02 +02:00
2017-10-22 19:16:49 +02:00
*fd* is designed to find entries in your filesystem. The most basic search you can perform is to
run *fd* with a single argument: the search pattern. For example, assume that you want to find an
old script of yours (the name included `netflix` ):
``` bash
> fd netfl
Software/python/imdb-ratings/netflix-details.py
2017-10-15 22:27:02 +02:00
```
2017-10-22 19:16:49 +02:00
If called with just a single argument like this, *fd* searches the current directory recursively
for any entries that *contain* the pattern `netfl` .
2017-10-15 22:27:02 +02:00
2017-10-22 19:16:49 +02:00
### Regular expression search
2017-10-06 16:31:04 +02:00
2017-10-22 19:16:49 +02:00
The search pattern is treated as a regular expression. Here, we search for entries that start
with `x` and end with `rc` :
``` bash
> cd /etc
> fd '^x.*rc$'
X11/xinit/xinitrc
X11/xinit/xserverrc
2017-10-06 16:31:04 +02:00
```
2024-08-05 13:32:20 +02:00
The regular expression syntax used by `fd` is [documented here ](https://docs.rs/regex/latest/regex/#syntax ).
2020-10-09 16:30:23 +02:00
2017-10-22 19:16:49 +02:00
### Specifying the root directory
2017-10-06 16:31:04 +02:00
2018-01-10 13:02:25 +01:00
If we want to search a specific directory, it can be given as a second argument to *fd* :
2017-10-22 19:16:49 +02:00
``` bash
> fd passwd /etc
/etc/default/passwd
/etc/pam.d/passwd
/etc/passwd
2017-10-15 22:27:02 +02:00
```
2021-02-14 10:51:40 +01:00
### List all files, recursively
2017-10-06 16:31:04 +02:00
2017-10-22 19:16:49 +02:00
*fd* can be called with no arguments. This is very useful to get a quick overview of all entries
in the current directory, recursively (similar to `ls -R` ):
``` bash
> cd fd/tests
> fd
testenv
testenv/mod.rs
tests.rs
2017-10-06 16:31:04 +02:00
```
2019-01-09 22:12:17 +01:00
If you want to use this functionality to list all files in a given directory, you have to use
a catch-all pattern such as `.` or `^` :
``` bash
> fd . fd/tests/
testenv
testenv/mod.rs
tests.rs
```
2017-10-22 19:16:49 +02:00
### Searching for a particular file extension
2017-10-06 16:31:04 +02:00
2017-10-22 19:16:49 +02:00
Often, we are interested in all files of a particular type. This can be done with the `-e` (or
`--extension` ) option. Here, we search for all Markdown files in the fd repository:
``` bash
> cd fd
> fd -e md
CONTRIBUTING.md
README.md
2017-10-06 16:31:04 +02:00
```
2017-10-22 19:16:49 +02:00
The `-e` option can be used in combination with a search pattern:
``` bash
> fd -e rs mod
src/fshelper/mod.rs
src/lscolors/mod.rs
tests/testenv/mod.rs
2017-10-06 16:31:04 +02:00
```
2021-06-22 03:31:16 +02:00
### Searching for a particular file name
To find files with exactly the provided search pattern, use the `-g` (or `--glob` ) option:
``` bash
2021-08-09 02:12:44 +02:00
> fd -g libc.so /usr
/usr/lib32/libc.so
/usr/lib/libc.so
2021-06-22 03:31:16 +02:00
```
2017-10-22 19:16:49 +02:00
### Hidden and ignored files
By default, *fd* does not search hidden directories and does not show hidden files in the
search results. To disable this behavior, we can use the `-H` (or `--hidden` ) option:
``` bash
> fd pre-commit
> fd -H pre-commit
.git/hooks/pre-commit.sample
2017-10-06 16:31:04 +02:00
```
2017-10-22 19:16:49 +02:00
If we work in a directory that is a Git repository (or includes Git repositories), *fd* does not
search folders (and does not show files) that match one of the `.gitignore` patterns. To disable
2018-02-09 14:35:58 +01:00
this behavior, we can use the `-I` (or `--no-ignore` ) option:
2017-10-22 19:16:49 +02:00
``` bash
> fd num_cpu
> fd -I num_cpu
target/debug/deps/libnum_cpus-f5ce7ef99006aa05.rlib
2017-10-06 16:31:04 +02:00
```
2017-10-22 19:16:49 +02:00
To really search *all* files and directories, simply combine the hidden and ignore features to show
2023-12-08 13:37:03 +01:00
everything (`-HI`) or use `-u` /`--unrestricted`.
2017-10-15 22:27:02 +02:00
2021-08-10 08:42:53 +02:00
### Matching the full path
By default, *fd* only matches the filename of each file. However, using the `--full-path` or `-p` option,
you can match against the full path.
```bash
> fd -p -g '**/.git/config'
> fd -p '.*/lesson-\d+/[a-z]+.(jpg|png)'
```
2021-02-14 19:50:50 +01:00
### Command execution
2021-02-14 10:52:53 +01:00
2021-02-14 19:50:50 +01:00
Instead of just showing the search results, you often want to *do something* with them. `fd`
provides two ways to execute external commands for each of your search results:
2020-12-08 00:07:02 +01:00
2021-02-14 19:50:50 +01:00
* The `-x` /`--exec` option runs an external command *for each of the search results* (in parallel).
* The `-X` /`--exec-batch` option launches the external command once, with *all search results as arguments* .
#### Examples
2021-02-14 19:59:53 +01:00
Recursively find all zip archives and unpack them:
2020-12-08 00:07:02 +01:00
``` bash
2021-02-14 19:50:50 +01:00
fd -e zip -x unzip
2020-12-08 00:07:02 +01:00
```
2021-02-14 19:59:53 +01:00
If there are two such files, `file1.zip` and `backup/file2.zip` , this would execute
`unzip file1.zip` and `unzip backup/file2.zip` . The two `unzip` processes run in parallel
(if the files are found fast enough).
2020-12-08 00:07:02 +01:00
2021-02-14 19:50:50 +01:00
Find all `*.h` and `*.cpp` files and auto-format them inplace with `clang-format -i` :
2020-12-08 00:07:02 +01:00
``` bash
2021-02-14 19:50:50 +01:00
fd -e h -e cpp -x clang-format -i
```
Note how the `-i` option to `clang-format` can be passed as a separate argument. This is why
we put the `-x` option last.
2020-12-08 00:07:02 +01:00
2021-02-14 19:50:50 +01:00
Find all `test_*.py` files and open them in your favorite editor:
``` bash
fd -g 'test_*.py' -X vim
```
2021-02-14 19:59:53 +01:00
Note that we use capital `-X` here to open a single `vim` instance. If there are two such files,
`test_basic.py` and `lib/test_advanced.py` , this will run `vim test_basic.py lib/test_advanced.py` .
2020-12-08 00:07:02 +01:00
2021-02-14 19:59:53 +01:00
To see details like file permissions, owners, file sizes etc., you can tell `fd` to show them
by running `ls` for each result:
2021-02-14 19:50:50 +01:00
``` bash
fd … -X ls -lhd --color=always
```
This pattern is so useful that `fd` provides a shortcut. You can use the `-l` /`--list-details`
option to execute `ls` in this way: `fd … -l` .
2020-12-08 00:07:02 +01:00
2021-11-26 19:30:55 +01:00
The `-X` option is also useful when combining `fd` with [ripgrep ](https://github.com/BurntSushi/ripgrep/ ) (`rg`) in order to search within a certain class of files, like all C++ source files:
2021-11-20 17:55:51 +01:00
```bash
2021-11-26 19:30:55 +01:00
fd -e cpp -e cxx -e h -e hpp -X rg 'std::cout'
2021-11-20 17:55:51 +01:00
```
2021-02-14 19:50:50 +01:00
Convert all `*.jpg` files to `*.png` files:
``` bash
fd -e jpg -x convert {} {.}.png
2020-12-08 00:07:02 +01:00
```
2021-02-14 19:50:50 +01:00
Here, `{}` is a placeholder for the search result. `{.}` is the same, without the file extension.
See below for more details on the placeholder syntax.
2022-08-30 15:04:35 +02:00
The terminal output of commands run from parallel threads using `-x` will not be interlaced or garbled,
2022-10-31 21:12:46 +01:00
so `fd -x` can be used to rudimentarily parallelize a task run over many files.
2022-08-30 15:04:35 +02:00
An example of this is calculating the checksum of each individual file within a directory.
```
2022-09-02 14:36:01 +02:00
fd -tf -x md5sum > file_checksums.txt
2022-08-30 15:04:35 +02:00
```
2021-02-14 19:50:50 +01:00
#### Placeholder syntax
The `-x` and `-X` options take a *command template* as a series of arguments (instead of a single string).
If you want to add additional options to `fd` after the command template, you can terminate it with a `\;` .
2020-12-08 00:07:02 +01:00
2021-03-14 20:03:09 +01:00
The syntax for generating commands is similar to that of [GNU Parallel ](https://www.gnu.org/software/parallel/ ):
2020-12-08 00:07:02 +01:00
- `{}` : A placeholder token that will be replaced with the path of the search result
(`documents/images/party.jpg`).
- `{.}` : Like `{}` , but without the file extension (`documents/images/party`).
- `{/}` : A placeholder that will be replaced by the basename of the search result (`party.jpg`).
2021-02-14 19:50:50 +01:00
- `{//}` : The parent of the discovered path (`documents/images`).
- `{/.}` : The basename, with the extension removed (`party`).
If you do not include a placeholder, *fd* automatically adds a `{}` at the end.
#### Parallel vs. serial execution
2020-12-08 00:07:02 +01:00
2021-02-14 19:50:50 +01:00
For `-x` /`--exec`, you can control the number of parallel jobs by using the `-j` /`--threads` option.
Use `--threads=1` for serial execution.
2020-12-08 00:07:02 +01:00
2021-02-14 19:51:10 +01:00
### Excluding specific files or directories
Sometimes we want to ignore search results from a specific subdirectory. For example, we might
want to search all hidden files and directories (`-H`) but exclude all matches from `.git`
directories. We can use the `-E` (or `--exclude` ) option for this. It takes an arbitrary glob
pattern as an argument:
``` bash
> fd -H -E .git …
```
We can also use this to skip mounted directories:
``` bash
> fd -E /mnt/external-drive …
```
.. or to skip certain file types:
``` bash
> fd -E '*.bak' …
```
To make exclude-patterns like these permanent, you can create a `.fdignore` file. They work like
`.gitignore` files, but are specific to `fd` . For example:
``` bash
> cat ~/.fdignore
/mnt/external-drive
*.bak
```
2023-12-28 00:50:02 +01:00
> [!NOTE]
> `fd` also supports `.ignore` files that are used by other programs such as `rg` or `ag`.
2021-02-14 19:51:10 +01:00
If you want `fd` to ignore these patterns globally, you can put them in `fd` 's global ignore file.
This is usually located in `~/.config/fd/ignore` in macOS or Linux, and `%APPDATA%\fd\ignore` in
Windows.
2024-04-28 08:15:08 +02:00
You may wish to include `.git/` in your `fd/ignore` file so that `.git` directories, and their contents
are not included in output if you use the `--hidden` option.
2019-05-31 14:30:54 +02:00
### Deleting files
You can use `fd` to remove all files and directories that are matched by your search pattern.
If you only want to remove files, you can use the `--exec-batch` /`-X` option to call `rm` . For
example, to recursively remove all `.DS_Store` files, run:
``` bash
> fd -H '^\.DS_Store$' -tf -X rm
```
If you are unsure, always call `fd` without `-X rm` first. Alternatively, use `rm` s "interactive"
option:
``` bash
> fd -H '^\.DS_Store$' -tf -X rm -i
```
If you also want to remove a certain class of directories, you can use the same technique. You will
have to use `rm` s `--recursive` /`-r` flag to remove directories.
2023-12-28 00:50:02 +01:00
> [!NOTE]
> There are scenarios where using `fd … -X rm -r` can cause race conditions: if you have a
2019-05-31 14:30:54 +02:00
path like `…/foo/bar/foo/…` and want to remove all directories named `foo` , you can end up in a
situation where the outer `foo` directory is removed first, leading to (harmless) *"'foo/bar/foo':
No such file or directory"* errors in the `rm` call.
2021-02-14 11:03:24 +01:00
### Command-line options
2021-02-14 10:57:09 +01:00
This is the output of `fd -h` . To see the full set of command-line options, use `fd --help` which
also includes a much more detailed help text.
```
2022-11-01 21:18:11 +01:00
Usage: fd [OPTIONS] [pattern] [path]...
Arguments:
[pattern] the search pattern (a regular expression, unless '--glob' is used; optional)
[path]... the root directories for the filesystem search (optional)
Options:
-H, --hidden Search hidden files and directories
-I, --no-ignore Do not respect .(git|fd)ignore files
-s, --case-sensitive Case-sensitive search (default: smart case)
-i, --ignore-case Case-insensitive search (default: smart case)
-g, --glob Glob-based search (default: regular expression)
-a, --absolute-path Show absolute instead of relative paths
-l, --list-details Use a long listing format with file metadata
-L, --follow Follow symbolic links
-p, --full-path Search full abs. path (default: filename only)
-d, --max-depth < depth > Set maximum search depth (default: none)
-E, --exclude < pattern > Exclude entries that match the given glob pattern
2023-12-30 21:54:57 +01:00
-t, --type < filetype > Filter by type: file (f), directory (d/dir), symlink (l),
2024-05-05 08:34:16 +02:00
executable (x), empty (e), socket (s), pipe (p), char-device
(c), block-device (b)
2022-11-01 21:18:11 +01:00
-e, --extension < ext > Filter by file extension
-S, --size < size > Limit results based on the size of files
--changed-within < date | dur > Filter by file modification time (newer than)
--changed-before < date | dur > Filter by file modification time (older than)
-o, --owner < user:group > Filter by owning user and/or group
2024-05-08 08:38:45 +02:00
--format < fmt > Print results according to template
2022-11-01 21:18:11 +01:00
-x, --exec < cmd > ... Execute a command for each search result
-X, --exec-batch < cmd > ... Execute a command with all search results at once
-c, --color < when > When to use colors [default: auto] [possible values: auto,
always, never]
2024-08-19 06:55:28 +02:00
--hyperlink[=< when > ] Add hyperlinks to output paths [default: never] [possible
values: auto, always, never]
2023-02-24 08:14:46 +01:00
-h, --help Print help (see more with '--help')
-V, --version Print version
2021-02-14 10:57:09 +01:00
```
## Benchmark
2023-12-19 11:10:54 +01:00
Let's search my home folder for files that end in `[0-9].jpg` . It contains ~750.000
subdirectories and about a 4 million files. For averaging and statistical analysis, I'm using
2021-02-14 10:57:09 +01:00
[hyperfine ](https://github.com/sharkdp/hyperfine ). The following benchmarks are performed
with a "warm"/pre-filled disk-cache (results for a "cold" disk-cache show the same trends).
Let's start with `find` :
```
2023-12-19 11:10:54 +01:00
Benchmark 1: find ~ -iregex '.*[0-9]\.jpg$'
Time (mean ± σ ): 19.922 s ± 0.109 s
Range (min … max): 19.765 s … 20.065 s
2021-02-14 10:57:09 +01:00
```
`find` is much faster if it does not need to perform a regular-expression search:
```
2023-12-19 11:10:54 +01:00
Benchmark 2: find ~ -iname '*[0-9].jpg'
Time (mean ± σ ): 11.226 s ± 0.104 s
Range (min … max): 11.119 s … 11.466 s
2021-02-14 10:57:09 +01:00
```
2023-12-19 11:10:54 +01:00
Now let's try the same for `fd` . Note that `fd` performs a regular expression
2023-12-27 20:22:18 +01:00
search by default. The options `-u` /`--unrestricted` option is needed here for
2023-12-19 11:10:54 +01:00
a fair comparison. Otherwise `fd` does not have to traverse hidden folders and
ignored paths (see below):
2021-02-14 10:57:09 +01:00
```
2023-12-19 11:10:54 +01:00
Benchmark 3: fd -u '[0-9]\.jpg$' ~
Time (mean ± σ ): 854.8 ms ± 10.0 ms
Range (min … max): 839.2 ms … 868.9 ms
2021-02-14 10:57:09 +01:00
```
2023-12-19 11:10:54 +01:00
For this particular example, `fd` is approximately **23 times faster** than `find -iregex`
and about **13 times faster** than `find -iname` . By the way, both tools found the exact
same 546 files :smile:.
2021-02-14 10:57:09 +01:00
2023-12-19 11:10:54 +01:00
**Note**: This is *one particular* benchmark on *one particular* machine. While we have
performed a lot of different tests (and found consistent results), things might
be different for you! We encourage everyone to try it out on their own. See
2021-02-14 10:57:09 +01:00
[this repository ](https://github.com/sharkdp/fd-benchmarks ) for all necessary scripts.
2023-12-19 11:10:54 +01:00
Concerning *fd* 's speed, a lot of credit goes to the `regex` and `ignore` crates that are
also used in [ripgrep ](https://github.com/BurntSushi/ripgrep ) (check it out!).
2021-02-14 10:57:09 +01:00
2021-02-14 10:52:53 +01:00
## Troubleshooting
2019-01-09 22:22:30 +01:00
2023-12-19 11:45:09 +01:00
### `fd` does not find my file!
Remember that `fd` ignores hidden directories and files by default. It also ignores patterns
from `.gitignore` files. If you want to make sure to find absolutely every possible file, always
use the options `-u` /`--unrestricted` option (or `-HI` to enable hidden and ignored files):
``` bash
> fd -u …
```
2021-02-14 10:55:30 +01:00
### Colorized output
`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 on Windows or if you are looking
for alternative, more complete (or more colorful) variants, see [here ](https://github.com/sharkdp/vivid ),
[here ](https://github.com/seebi/dircolors-solarized ) or
[here ](https://github.com/trapd00r/LS_COLORS ).
`fd` also honors the [`NO_COLOR` ](https://no-color.org/ ) environment variable.
2021-02-14 10:52:53 +01:00
### `fd` doesn't seem to interpret my regex pattern correctly
2019-01-09 22:22:30 +01:00
A lot of special regex characters (like `[]` , `^` , `$` , ..) are also special characters in your
shell. If in doubt, always make sure to put single quotes around the regex pattern:
``` bash
> fd '^[A-Z][0-9]+$'
```
If your pattern starts with a dash, you have to add `--` to signal the end of command line
options. Otherwise, the pattern will be interpreted as a command-line option. Alternatively,
use a character class with a single hyphen character:
``` bash
> fd -- '-pattern'
> fd '[-]pattern'
```
2021-11-14 16:21:24 +01:00
### "Command not found" for `alias`es or shell functions
Shell `alias` es and shell functions can not be used for command execution via `fd -x` or
`fd -X` . In `zsh` , you can make the alias global via `alias -g myalias="…"` . In `bash` ,
you can use `export -f my_function` to make available to child processes. You would still
need to call `fd -x bash -c 'my_function "$1"' bash` . For other use cases or shells, use
a (temporary) shell script.
2021-02-14 10:52:53 +01:00
## Integration with other programs
2018-04-12 16:17:00 +02:00
2021-02-14 10:52:53 +01:00
### Using fd with `fzf`
2018-01-02 22:26:38 +01:00
You can use *fd* to generate input for the command-line fuzzy finder [fzf ](https://github.com/junegunn/fzf ):
``` bash
export FZF_DEFAULT_COMMAND='fd --type file'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
```
Then, you can type `vim <Ctrl-T>` on your terminal to open fzf and search through the fd-results.
Alternatively, you might like to follow symbolic links and include hidden files (but exclude `.git` folders):
``` bash
export FZF_DEFAULT_COMMAND='fd --type file --follow --hidden --exclude .git'
```
You can even use fd's colored output inside fzf by setting:
``` bash
export FZF_DEFAULT_COMMAND="fd --type file --color=always"
export FZF_DEFAULT_OPTS="--ansi"
```
For more details, see the [Tips section ](https://github.com/junegunn/fzf#tips ) of the fzf README.
2018-04-12 16:17:00 +02:00
2021-04-14 14:17:18 +02:00
### Using fd with `rofi`
[*rofi* ](https://github.com/davatorium/rofi ) is a graphical launch menu application that is able to create menus by reading from *stdin* . Piping `fd` output into `rofi` s `-dmenu` mode creates fuzzy-searchable lists of files and directories.
#### Example
Create a case-insensitive searchable multi-select list of *PDF* files under your `$HOME` directory and open the selection with your configured PDF viewer. To list all file types, drop the `-e pdf` argument.
``` bash
fd --type f -e pdf . $HOME | rofi -keep-right -dmenu -i -p FILES -multi-select | xargs -I {} xdg-open {}
```
To modify the list that is presented by rofi, add arguments to the `fd` command. To modify the search behaviour of rofi, add arguments to the `rofi` command.
2021-02-14 10:52:53 +01:00
### Using fd with `emacs`
2018-04-12 16:17:00 +02:00
2018-04-13 22:34:32 +02:00
The emacs package [find-file-in-project ](https://github.com/technomancy/find-file-in-project ) can
use *fd* to find files.
2018-04-12 16:17:00 +02:00
2018-04-13 22:34:32 +02:00
After installing `find-file-in-project` , add the line `(setq ffip-use-rust-fd t)` to your
`~/.emacs` or `~/.emacs.d/init.el` file.
2018-04-12 16:17:00 +02:00
2018-04-13 22:34:32 +02:00
In emacs, run `M-x find-file-in-project-by-selected` to find matching files. Alternatively, run
`M-x find-file-in-project` to list all available files in the project.
2020-01-19 16:16:25 +01:00
2021-02-14 10:55:30 +01:00
### Printing the output as a tree
2020-05-13 06:39:28 +02:00
2023-09-19 14:20:20 +02:00
To format the output of `fd` as a file-tree you can use the `tree` command with
`--fromfile` :
2020-05-13 06:39:28 +02:00
```bash
2023-09-19 14:20:20 +02:00
❯ fd | tree --fromfile
2020-05-13 06:39:28 +02:00
```
2023-09-19 14:20:20 +02:00
This can be more useful than running `tree` by itself because `tree` does not
ignore any files by default, nor does it support as rich a set of options as
`fd` does to control what to print:
2020-05-13 06:39:28 +02:00
```bash
2023-09-19 14:20:20 +02:00
❯ fd --extension rs | tree --fromfile
2020-05-13 06:39:28 +02:00
.
├── build.rs
└── src
├── app.rs
└── error.rs
```
2023-09-19 14:20:20 +02:00
On bash and similar you can simply create an alias:
```bash
❯ alias as-tree='tree --fromfile'
```
2020-05-13 06:39:28 +02:00
2021-02-14 11:27:44 +01:00
### Using fd with `xargs` or `parallel`
2021-02-14 19:50:50 +01:00
Note that `fd` has a builtin feature for [command execution ](#command-execution ) with
2021-02-14 11:27:44 +01:00
its `-x` /`--exec` and `-X` /`--exec-batch` options. If you prefer, you can still use
it in combination with `xargs` :
``` bash
> fd -0 -e rs | xargs -0 wc -l
```
Here, the `-0` option tells *fd* to separate search results by the NULL character (instead of
newlines). In the same way, the `-0` option of `xargs` tells it to read the input in this way.
2020-12-07 06:54:00 +01:00
## Installation
[![Packaging status ](https://repology.org/badge/vertical-allrepos/fd-find.svg )](https://repology.org/project/fd-find/versions)
### On Ubuntu
*... and other Debian-based Linux distributions.*
If you run Ubuntu 19.04 (Disco Dingo) or newer, you can install the
[officially maintained package ](https://packages.ubuntu.com/fd-find ):
```
2024-04-29 20:04:39 +02:00
apt install fd-find
2020-12-07 06:54:00 +01:00
```
Note that the binary is called `fdfind` as the binary name `fd` is already used by another package.
2021-02-12 06:52:35 +01:00
It is recommended that after installation, you add a link to `fd` by executing command
`ln -s $(which fdfind) ~/.local/bin/fd` , in order to use `fd` in the same way as in this documentation.
2021-07-20 17:05:01 +02:00
Make sure that `$HOME/.local/bin` is in your `$PATH` .
2020-12-07 06:54:00 +01:00
If you use an older version of Ubuntu, you can download the latest `.deb` package from the
[release page ](https://github.com/sharkdp/fd/releases ) and install it via:
``` bash
2024-04-29 20:04:39 +02:00
dpkg -i fd_9.0.0_amd64.deb # adapt version number and architecture
2020-12-07 06:54:00 +01:00
```
2024-07-17 08:04:36 +02:00
Note that the .deb packages on the release page for this project still name the executable `fd` .
2020-12-07 06:54:00 +01:00
### On Debian
If you run Debian Buster or newer, you can install the
[officially maintained Debian package ](https://tracker.debian.org/pkg/rust-fd-find ):
```
2024-04-29 20:04:39 +02:00
apt-get install fd-find
2020-12-07 06:54:00 +01:00
```
Note that the binary is called `fdfind` as the binary name `fd` is already used by another package.
2021-02-12 06:52:35 +01:00
It is recommended that after installation, you add a link to `fd` by executing command
`ln -s $(which fdfind) ~/.local/bin/fd` , in order to use `fd` in the same way as in this documentation.
2021-07-20 17:05:01 +02:00
Make sure that `$HOME/.local/bin` is in your `$PATH` .
2020-12-07 06:54:00 +01:00
2024-07-17 08:04:36 +02:00
Note that the .deb packages on the release page for this project still name the executable `fd` .
2020-12-07 06:54:00 +01:00
### On Fedora
Starting with Fedora 28, you can install `fd` from the official package sources:
``` bash
2024-04-29 20:04:39 +02:00
dnf install fd-find
2020-12-07 06:54:00 +01:00
```
### On Alpine Linux
You can install [the fd package ](https://pkgs.alpinelinux.org/packages?name=fd )
from the official sources, provided you have the appropriate repository enabled:
```
2024-04-29 20:04:39 +02:00
apk add fd
2020-12-07 06:54:00 +01:00
```
### On Arch Linux
You can install [the fd package ](https://www.archlinux.org/packages/community/x86_64/fd/ ) from the official repos:
```
2024-04-29 20:04:39 +02:00
pacman -S fd
2020-12-07 06:54:00 +01:00
```
2024-02-11 21:25:33 +01:00
You can also install fd [from the AUR ](https://aur.archlinux.org/packages/fd-git ).
2020-12-07 06:54:00 +01:00
### On Gentoo Linux
You can use [the fd ebuild ](https://packages.gentoo.org/packages/sys-apps/fd ) from the official repo:
```
2024-04-29 20:04:39 +02:00
emerge -av fd
2020-12-07 06:54:00 +01:00
```
### On openSUSE Linux
You can install [the fd package ](https://software.opensuse.org/package/fd ) from the official repo:
```
2024-04-29 20:04:39 +02:00
zypper in fd
2020-12-07 06:54:00 +01:00
```
### On Void Linux
You can install `fd` via xbps-install:
```
2024-04-29 20:04:39 +02:00
xbps-install -S fd
2024-02-11 21:25:33 +01:00
```
### On ALT Linux
You can install [the fd package ](https://packages.altlinux.org/en/sisyphus/srpms/fd/ ) from the official repo:
```
2024-04-29 20:04:39 +02:00
apt-get install fd
2024-02-11 21:25:33 +01:00
```
### On Solus
You can install [the fd package ](https://github.com/getsolus/packages/tree/main/packages/f/fd ) from the official repo:
```
2024-04-29 20:04:39 +02:00
eopkg install fd
2020-12-07 06:54:00 +01:00
```
2023-10-25 13:19:27 +02:00
### On RedHat Enterprise Linux 8/9 (RHEL8/9), Almalinux 8/9, EuroLinux 8/9 or Rocky Linux 8/9
2022-03-31 12:48:39 +02:00
2023-07-14 10:32:30 +02:00
You can install [the `fd` package ](https://copr.fedorainfracloud.org/coprs/tkbcopr/fd/ ) from Fedora Copr.
```bash
2024-04-29 20:04:39 +02:00
dnf copr enable tkbcopr/fd
dnf install fd
2022-03-31 12:48:39 +02:00
```
2023-10-25 13:19:27 +02:00
A different version using the [slower ](https://github.com/sharkdp/fd/pull/481#issuecomment-534494592 ) malloc [instead of jemalloc ](https://bugzilla.redhat.com/show_bug.cgi?id=2216193#c1 ) is also available from the EPEL8/9 repo as the package `fd-find` .
2023-07-14 10:32:30 +02:00
2020-12-07 06:54:00 +01:00
### On macOS
You can install `fd` with [Homebrew ](https://formulae.brew.sh/formula/fd ):
```
brew install fd
```
… or with MacPorts:
```
2024-04-29 20:04:39 +02:00
port install fd
2020-12-07 06:54:00 +01:00
```
### On Windows
You can download pre-built binaries from the [release page ](https://github.com/sharkdp/fd/releases ).
Alternatively, you can install `fd` via [Scoop ](http://scoop.sh ):
```
scoop install fd
```
Or via [Chocolatey ](https://chocolatey.org ):
```
choco install fd
```
2023-02-04 03:51:47 +01:00
Or via [Winget ](https://learn.microsoft.com/en-us/windows/package-manager/ ):
```
winget install sharkdp.fd
```
2022-04-13 13:56:32 +02:00
### On GuixOS
You can install [the fd package ](https://guix.gnu.org/en/packages/fd-8.1.1/ ) from the official repo:
```
2024-04-29 20:04:39 +02:00
guix install fd
2022-04-13 13:56:32 +02:00
```
2020-12-07 06:54:00 +01:00
### On NixOS / via Nix
You can use the [Nix package manager ](https://nixos.org/nix/ ) to install `fd` :
```
2024-04-29 20:04:39 +02:00
nix-env -i fd
2020-12-07 06:54:00 +01:00
```
2024-06-12 15:12:23 +02:00
### Via Flox
You can use [Flox ](https://flox.dev ) to install `fd` into a Flox environment:
```
flox install fd
```
2020-12-07 06:54:00 +01:00
### On FreeBSD
You can install [the fd-find package ](https://www.freshports.org/sysutils/fd ) from the official repo:
```
2024-04-29 20:04:39 +02:00
pkg install fd-find
2020-12-07 06:54:00 +01:00
```
2021-10-06 18:38:50 +02:00
### From npm
2020-12-07 06:54:00 +01:00
2024-02-11 21:25:33 +01:00
On Linux and macOS, you can install the [fd-find ](https://npm.im/fd-find ) package:
2020-12-07 06:54:00 +01:00
```
npm install -g fd-find
```
### From source
With Rust's package manager [cargo ](https://github.com/rust-lang/cargo ), you can install *fd* via:
```
cargo install fd-find
```
2024-04-12 05:14:11 +02:00
Note that rust version *1.77.2* or later is required.
2020-12-07 06:54:00 +01:00
2021-08-10 08:27:17 +02:00
`make` is also needed for the build.
2020-12-07 06:54:00 +01:00
### From binaries
2021-06-19 19:36:22 +02:00
The [release page ](https://github.com/sharkdp/fd/releases ) includes precompiled binaries for Linux, macOS and Windows. Statically-linked binaries are also available: look for archives with `musl` in the file name.
2020-12-07 06:54:00 +01:00
## Development
```bash
git clone https://github.com/sharkdp/fd
# Build
cd fd
cargo build
# Run unit tests and integration tests
cargo test
# Install
cargo install --path .
```
2020-06-10 07:42:49 +02:00
## Maintainers
- [sharkdp ](https://github.com/sharkdp )
- [tmccombs ](https://github.com/tmccombs )
2021-08-09 07:34:26 +02:00
- [tavianator ](https://github.com/tavianator )
2020-06-10 07:42:49 +02:00
2020-01-19 16:16:25 +01:00
## License
2021-02-14 10:51:30 +01:00
2020-01-19 16:16:25 +01:00
`fd` is distributed under the terms of both the MIT License and the Apache License 2.0.
See the [LICENSE-APACHE ](LICENSE-APACHE ) and [LICENSE-MIT ](LICENSE-MIT ) files for license details.