fd is a program to find entries in your filesystem. It is a simple, fast and user-friendly alternative to find

Overview

fd

Build Status Build status Version info [中文] [한국어]

fd is a program to find entries in your filesystem. It is a simple, fast and user-friendly alternative to find. While it does not aim to support all of find's powerful functionality, it provides sensible (opinionated) defaults for a majority of use cases.

Quick links:

Features

  • Intuitive syntax: fd PATTERN instead of find -iname '*PATTERN*'.
  • Regular expression (default) and glob-based patterns.
  • Very fast due to parallelized directory traversal.
  • Uses colors to highlight different file types (same as ls).
  • Supports parallel command execution
  • Smart case: the search is case-insensitive by default. It switches to case-sensitive if the pattern contains an uppercase character*.
  • Ignores hidden directories and files, by default.
  • Ignores patterns from your .gitignore, by default.
  • The command name is 50% shorter* than find :-).

Demo

Demo

How to use

First, to get an overview of all available command line options, you can either run fd -h for a concise help message or fd --help for a more detailed version.

Simple search

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):

> fd netfl
Software/python/imdb-ratings/netflix-details.py

If called with just a single argument like this, fd searches the current directory recursively for any entries that contain the pattern netfl.

Regular expression search

The search pattern is treated as a regular expression. Here, we search for entries that start with x and end with rc:

> cd /etc
> fd '^x.*rc$'
X11/xinit/xinitrc
X11/xinit/xserverrc

The regular expression syntax used by fd is documented here.

Specifying the root directory

If we want to search a specific directory, it can be given as a second argument to fd:

> fd passwd /etc
/etc/default/passwd
/etc/pam.d/passwd
/etc/passwd

List all files, recursively

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):

> cd fd/tests
> fd
testenv
testenv/mod.rs
tests.rs

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 ^:

> fd . fd/tests/
testenv
testenv/mod.rs
tests.rs

Searching for a particular file extension

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:

> cd fd
> fd -e md
CONTRIBUTING.md
README.md

The -e option can be used in combination with a search pattern:

> fd -e rs mod
src/fshelper/mod.rs
src/lscolors/mod.rs
tests/testenv/mod.rs

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:

> fd pre-commit
> fd -H pre-commit
.git/hooks/pre-commit.sample

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 this behavior, we can use the -I (or --no-ignore) option:

> fd num_cpu
> fd -I num_cpu
target/debug/deps/libnum_cpus-f5ce7ef99006aa05.rlib

To really search all files and directories, simply combine the hidden and ignore features to show everything (-HI).

Command execution

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:

  • 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

Recursively find all zip archives and unpack them:

fd -e zip -x unzip

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).

Find all *.h and *.cpp files and auto-format them inplace with clang-format -i:

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.

Find all test_*.py files and open them in your favorite editor:

fd -g 'test_*.py' -X vim

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.

To see details like file permissions, owners, file sizes etc., you can tell fd to show them by running ls for each result:

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.

Convert all *.jpg files to *.png files:

fd -e jpg -x convert {} {.}.png

Here, {} is a placeholder for the search result. {.} is the same, without the file extension. See below for more details on the placeholder syntax.

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 \;.

The syntax for generating commands is similar to that of GNU Parallel:

  • {}: 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).
  • {//}: 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

For -x/--exec, you can control the number of parallel jobs by using the -j/--threads option. Use --threads=1 for serial execution.

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:

> fd -H -E .git …

We can also use this to skip mounted directories:

> fd -E /mnt/external-drive …

.. or to skip certain file types:

> 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:

> cat ~/.fdignore
/mnt/external-drive
*.bak

Note: fd also supports .ignore files that are used by other programs such as rg or ag.

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.

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:

> fd -H '^\.DS_Store$' -tf -X rm

If you are unsure, always call fd without -X rm first. Alternatively, use rms "interactive" option:

> 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 rms --recursive/-r flag to remove directories.

Note: there are scenarios where using fd … -X rm -r can cause race conditions: if you have a 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.

Command-line options

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.

USAGE:
    fd [FLAGS/OPTIONS] [] [...]

FLAGS:
    -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 path (default: file-/dirname only)
    -0, --print0            Separate results by the null character
    -h, --help              Prints help information
    -V, --version           Prints version information

OPTIONS:
    -d, --max-depth             Set maximum search depth (default: none)
    -t, --type ...           Filter by type: file (f), directory (d), symlink (l),
                                       executable (x), empty (e), socket (s), pipe (p)
    -e, --extension ...           Filter by file extension
    -x, --exec                    Execute a command for each search result
    -X, --exec-batch              Execute a command with all search results at once
    -E, --exclude ...         Exclude entries that match the given glob pattern
    -c, --color                  When to use colors: never, *auto*, always
    -S, --size ...               Limit results based on the size of files.
        --changed-within     Filter by file modification time (newer than)
        --changed-before     Filter by file modification time (older than)

ARGS:
        the search pattern - a regular expression unless '--glob' is used (optional)
    ...    the root directory for the filesystem search (optional)

Benchmark

Let's search my home folder for files that end in [0-9].jpg. It contains ~190.000 subdirectories and about a million files. For averaging and statistical analysis, I'm using 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:

Benchmark #1: find ~ -iregex '.*[0-9]\.jpg$'

  Time (mean ± σ):      7.236 s ±  0.090 s

  Range (min … max):    7.133 s …  7.385 s

find is much faster if it does not need to perform a regular-expression search:

Benchmark #2: find ~ -iname '*[0-9].jpg'

  Time (mean ± σ):      3.914 s ±  0.027 s

  Range (min … max):    3.876 s …  3.964 s

Now let's try the same for fd. Note that fd always performs a regular expression search. The options --hidden and --no-ignore are needed for a fair comparison, otherwise fd does not have to traverse hidden folders and ignored paths (see below):

Benchmark #3: fd -HI '.*[0-9]\.jpg$' ~

  Time (mean ± σ):     811.6 ms ±  26.9 ms

  Range (min … max):   786.0 ms … 870.7 ms

For this particular example, fd is approximately nine times faster than find -iregex and about five times faster than find -iname. By the way, both tools found the exact same 20880 files 😄 .

Finally, let's run fd without --hidden and --no-ignore (this can lead to different search results, of course). If fd does not have to traverse the hidden and git-ignored folders, it is almost an order of magnitude faster:

Benchmark #4: fd '[0-9]\.jpg$' ~

  Time (mean ± σ):     123.7 ms ±   6.0 ms

  Range (min … max):   118.8 ms … 140.0 ms

Note: This is one particular benchmark on one particular machine. While I have performed quite a lot of different tests (and found consistent results), things might be different for you! I encourage everyone to try it out on their own. See this repository for all necessary scripts.

Concerning fd's speed, the main credit goes to the regex and ignore crates that are also used in ripgrep (check it out!).

Troubleshooting

Colorized output

fd can colorize files by extension, just like ls. In order for this to work, the environment variable LS_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, here or here.

fd also honors the NO_COLOR environment variable.

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 -H and -I to disable these two features:

> fd -HI …

fd doesn't seem to interpret my regex pattern correctly

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:

> 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:

> fd -- '-pattern'
> fd '[-]pattern'

Integration with other programs

Using fd with fzf

You can use fd to generate input for the command-line fuzzy finder fzf:

export FZF_DEFAULT_COMMAND='fd --type file'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"

Then, you can type vim 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):

export FZF_DEFAULT_COMMAND='fd --type file --follow --hidden --exclude .git'

You can even use fd's colored output inside fzf by setting:

export FZF_DEFAULT_COMMAND="fd --type file --color=always"
export FZF_DEFAULT_OPTS="--ansi"

For more details, see the Tips section of the fzf README.

Using fd with rofi

rofi is a graphical launch menu application that is able to create menus by reading from stdin. Piping fd output into rofis -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.

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.

Using fd with emacs

The emacs package find-file-in-project can use fd to find files.

After installing find-file-in-project, add the line (setq ffip-use-rust-fd t) to your ~/.emacs or ~/.emacs.d/init.el file.

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.

Printing the output as a tree

To format the output of fd similar to the tree command, install as-tree and pipe the output of fd to as-tree:

fd | as-tree

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:

❯ fd --extension rs | as-tree
.
├── build.rs
└── src
    ├── app.rs
    └── error.rs

For more information about as-tree, see the as-tree README.

Using fd with xargs or parallel

Note that fd has a builtin feature for command execution with its -x/--exec and -X/--exec-batch options. If you prefer, you can still use it in combination with xargs:

> 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.

Installation

Packaging status

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:

sudo apt install fd-find

Note that the binary is called fdfind as the binary name fd is already used by another package. 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.

If you use an older version of Ubuntu, you can download the latest .deb package from the release page and install it via:

sudo dpkg -i fd_8.2.1_amd64.deb  # adapt version number and architecture

On Debian

If you run Debian Buster or newer, you can install the officially maintained Debian package:

sudo apt-get install fd-find

Note that the binary is called fdfind as the binary name fd is already used by another package. 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.

On Fedora

Starting with Fedora 28, you can install fd from the official package sources:

dnf install fd-find

For older versions, you can use this Fedora copr to install fd:

dnf copr enable keefle/fd
dnf install fd

On Alpine Linux

You can install the fd package from the official sources, provided you have the appropriate repository enabled:

apk add fd

On Arch Linux

You can install the fd package from the official repos:

pacman -S fd

On Gentoo Linux

You can use the fd ebuild from the official repo:

emerge -av fd

On openSUSE Linux

You can install the fd package from the official repo:

zypper in fd

On Void Linux

You can install fd via xbps-install:

xbps-install -S fd

On macOS

You can install fd with Homebrew:

brew install fd

… or with MacPorts:

sudo port install fd

On Windows

You can download pre-built binaries from the release page.

Alternatively, you can install fd via Scoop:

scoop install fd

Or via Chocolatey:

choco install fd

On NixOS / via Nix

You can use the Nix package manager to install fd:

nix-env -i fd

On FreeBSD

You can install the fd-find package from the official repo:

pkg install fd-find

From NPM

On linux and macOS, you can install the fd-find package:

npm install -g fd-find

From source

With Rust's package manager cargo, you can install fd via:

cargo install fd-find

Note that rust version 1.36.0 or later is required.

From binaries

The release page includes precompiled binaries for Linux, macOS and Windows.

Development

git clone https://github.com/sharkdp/fd

# Build
cd fd
cargo build

# Run unit tests and integration tests
cargo test

# Install
cargo install --path .

Maintainers

License

Copyright (c) 2017-2021 The fd developers

fd is distributed under the terms of both the MIT License and the Apache License 2.0.

See the LICENSE-APACHE and LICENSE-MIT files for license details.

Comments
  • Colourful output on Windows (in Git Bash)

    Colourful output on Windows (in Git Bash)

    I've seen the talks leading up to colour output support, namely #129 #137

    However, bat works and emits a colourful output, by default. Below is bat ~/Desktop/desktop.ini:

    bat output with colours working

    It seems colourful output can be supported.

    I'm using Git Bash 2.20-something. Git Bash can be set up to run with MinTTY, which gets you a nice terminal emulator, unlike that of the default cmd. Git Bash is the nicest and best way to get Bash shell environment running for Windows, and this is like the only Shell I use on Windows, so it's surprising that if bat colours work, fd does not.

    help wanted good first issue windows 
    opened by whisperity 47
  • Finding multiple patterns

    Finding multiple patterns

    I'd like to be able to search for multiple patterns, like with grep's -e argument. It seems (with fd 7.0.0) the only way is to use alternation in the regex pattern, but this can be less clear than multiple arguments, and is harder to build up programmatically.

    feature-request 
    opened by tjkirch 38
  • fd can get stuck when ran onto the whole FS from the root

    fd can get stuck when ran onto the whole FS from the root

    The ran command is just fd foobar /. It gets stuck and never end. I sadly was unable to understand what's causing it. I can investigate to give answers if you have some ideas about what else could I check.

    Below is the partition's setup:

    # lsblk
    NAME           MAJ:MIN RM   SIZE RO TYPE  MOUNTPOINT
    sda              8:0    0 223,6G  0 disk  
    ├─sda1           8:1    0   512M  0 part  /boot/efi
    ├─sda2           8:2    0   200M  0 part  
    │ └─cryptboot  254:3    0   198M  0 crypt /boot
    └─sda3           8:3    0 222,9G  0 part  
      └─lvm        254:0    0 222,9G  0 crypt 
        ├─vg0-swap 254:1    0     8G  0 lvm   [SWAP]
        └─vg0-root 254:2    0 214,9G  0 lvm   /
    

    EDIT: Issue is reproducing everytime on this Archlinux setup. Couldn't reproduce it on another Archlinux with unencrypted system.

    bug 
    opened by Porkepix 37
  • Add `--ignore-file` flag

    Add `--ignore-file` flag

    Basically identical to rg's same flag.

    The benefit of this is that sometimes you don't want to ignore every gitignore file found in the search path, but you do want to specifically ignore some files, so this flag comes in handy. Also, if I'm searching from ~, I don't expect the gitignore file several levels down in some project to get picked up by default.

    feature-request 
    opened by alok 35
  • Without pattern 'find' ~8x faster than 'fd'

    Without pattern 'find' ~8x faster than 'fd'

    OS: Linux 4.14.3-1-ARCH FS: ext4 fd: 6.0.0

    Simple test:

    > time find > /dev/null
    find > /dev/null  0.00s user 0.06s system 97% cpu 0.065 total
    > time fd --color never -HI > /dev/null
    fd --color never -HI > /dev/null  0.75s user 0.10s system 133% cpu 0.631 total
    

    Also fd with pattern faster ~8x than fd without pattern:

    > time fd --color never -HI '.zshrc' > /dev/null
    fd --color never -HI '.zshrc' > /dev/null  0.18s user 0.06s system 325% cpu 0.073 total
    > time fd --color never -HI > /dev/null
    fd --color never -HI > /dev/null  0.74s user 0.06s system 132% cpu 0.608 total
    
    help wanted performance 
    opened by dtcyganok 33
  • Implement the --exec flag

    Implement the --exec flag

    With this change, the --exec flag will be fully functional with a syntax similar to GNU Parallel. The argument that follows the --exec flag will be used as the command template, and each path discovered is distributed across a job pool for command generation & execution.

    The README has been updated to demonstrate the new feature.

    Closes #84

    opened by mmstick 31
  • Display directories with trailing slashes

    Display directories with trailing slashes

    HI,

    It will be great if there will be a possibility to have directories displayed with a trailing "/" (as an option or not). When you don't use colors, there is no way to distinct directories from files.

    Regards,

    feature-request good first issue 
    opened by rockandska 29
  • Consider relicensing under MIT/Apache-2.0

    Consider relicensing under MIT/Apache-2.0

    Some time ago, there were requests that MIT or Apache-2.0 licensed Rust projects would be relicensed under MIT/Apache-2.0 dual license, see here.

    Please consider if this would be acceptable for this project as well.

    question 
    opened by Detegr 29
  • add support for matching multiple patterns

    add support for matching multiple patterns

    Added the ~--and~ ~--expr~ --and flags that search for matches containing all the patterns, similar to the -and flag of GNU find.

    https://github.com/minad/consult/issues/6 #315

    opened by Uthar 27
  • Append trailing path separators to directories

    Append trailing path separators to directories

    Solves #436.

    Add a trailing slash (or custom path separator, if provided) to directories. This only affects output; path args for exec are processed normally.

    opened by yyogo 26
  • Thoughts on non-zero exit code for no matches?

    Thoughts on non-zero exit code for no matches?

    grep returns a non-zero exit code when no matches are found, making it easy to include in shell scripts and if conditions directly without having to shell out to test to analyze the results.

    What are your thoughts on having fd do the same so that fd not-exists and fd exists have differing exit codes that could be directly checked?

    feature-request good first issue 
    opened by mqudsi 26
  • fd and find don't output the same results

    fd and find don't output the same results

    What version of fd are you using? fd 8.6.0

    Ben@ori ➜ ~ fd "wic"
    .rustup/toolchains/stable-aarch64-unknown-linux-gnu/share/doc/rust/html/unstable-book/language-features/ffi-returns-twice.html
    yocto_nitrogen8mn/yocto-imx8m-nano/sources/poky/meta/classes/image_types_wic.bbclass
    yocto_nitrogen8mn/yocto-imx8m-nano/sources/poky/meta/recipes-core/meta/wic-tools.bb
    yocto_nitrogen8mn/yocto-imx8m-nano/sources/poky/meta/lib/oeqa/selftest/cases/wic.py
    yocto_nitrogen8mn/yocto-imx8m-nano/sources/poky/scripts/wic
    yocto_nitrogen8mn/yocto-imx8m-nano/sources/poky/meta-selftest/recipes-test/images/wic-image-minimal.bb
    yocto_nitrogen8mn/yocto-imx8m-nano/sources/poky/meta-selftest/recipes-test/images/wic-image-minimal.wks
    yocto_nitrogen8mn/yocto-imx8m-nano/sources/poky/meta-selftest/wic/wictestdisk.wks                                                                                                                                                488ms
    Ben@ori ➜ ~ find . -name "*.wic*"
    ./yocto_nitrogen8mn/yocto-imx8m-nano/build/tmp/deploy/images/nitrogen8mn/t2-image-nitrogen8mn.wic.bmap
    ./yocto_nitrogen8mn/yocto-imx8m-nano/build/tmp/deploy/images/nitrogen8mn/t2-image-nitrogen8mn-20230104012639.rootfs.wic.bmap
    ./yocto_nitrogen8mn/yocto-imx8m-nano/build/tmp/deploy/images/nitrogen8mn/t2-image-nitrogen8mn.wic.gz
    ./yocto_nitrogen8mn/yocto-imx8m-nano/build/tmp/deploy/images/nitrogen8mn/t2-image-nitrogen8mn-20230104012639.rootfs.wic.gz
    ./yocto_nitrogen8mn/yocto-imx8m-nano/build/tmp/work/nitrogen8mn-fslc-linux/t2-image/1.0-r0/deploy-t2-image-image-complete/t2-image-nitrogen8mn.wic.bmap
    ./yocto_nitrogen8mn/yocto-imx8m-nano/build/tmp/work/nitrogen8mn-fslc-linux/t2-image/1.0-r0/deploy-t2-image-image-complete/t2-image-nitrogen8mn-20230104012639.rootfs.wic.bmap
    ./yocto_nitrogen8mn/yocto-imx8m-nano/build/tmp/work/nitrogen8mn-fslc-linux/t2-image/1.0-r0/deploy-t2-image-image-complete/t2-image-nitrogen8mn.wic.gz
    ./yocto_nitrogen8mn/yocto-imx8m-nano/build/tmp/work/nitrogen8mn-fslc-linux/t2-image/1.0-r0/deploy-t2-image-image-complete/t2-image-nitrogen8mn-20230104012639.rootfs.wic.gz   
    

    and in particular the result I was looking for wasn't listed by fd

    question 
    opened by darzok0914 1
  • Draft: ✨ Add FD_CONFIG_PATH environment variable

    Draft: ✨ Add FD_CONFIG_PATH environment variable

    Summary: Add FD_CONFIG_PATH environment variable which points to a file with config options that are prepended to any fd command. This has the same behavior as RG_CONFIG_PATH from ripgrep

    Test Plan: cargo test

    TODO:

    • add flag --no-config to not respect FD_CONFIG_PATH, .fdignore, or global
    • add documentation fd ignore
    • make parsing config file blazingly fast
    • if FD_CONFIG_PATH not set, or file does not exist, just use args_os() directly
    • fix test_invalid_cwd
    opened by vegerot 1
  • Add flag --no-require-git to always respect gitignore files

    Add flag --no-require-git to always respect gitignore files

    Add flag --no-require-git to always respect gitignore files

    Summary: Currently, --ignore-vcs only serves to unset --no-ignore-vcs. There is currently no way to tell fd to respect gitignore files when not in a git repository. This commit adds the flag --no-require-git to make fd always respect all gitignore files.

    This behaves the same as the --no-require-git option in ripgrep

    Test Plan: tests/tests.rs

    Background: I am using Sapling for working with git repositories (including this commit ☺️). Since Sapling uses .sl instead of .git, tools using the ignore crate (rg and fd) would show gitignored files. I made a patch (https://github.com/vegerot/ripgrep/commit/ebf17eef22a04450ca86e9dc790db7cb00e11e52) to ignore to respect gitignores with either .git or .sl. However, @BurntSushi said he did not want to merge that patch and instead suggested I use --no-require-git (https://github.com/BurntSushi/ripgrep/issues/2374). This works fine, but I couldn't use this workaround for my other favorite tool! That's what this patch is for 😁

    (a follow-up patch will add a similar FD_CONFIG_PATH environment variable like RG_CONFIG_PATH)


    Stack created with Sapling. Best reviewed with ReviewStack.

    • #1218
    • -> #1216
    opened by vegerot 5
  • Allow

    Allow "-t c" and "-t b" for block and character files on linux.

    See title. Find supports both those options, but fd doesn't. Excerpt from the find man page:

    -type c
        File is of type c:
        b      block (buffered) special
        c      character (unbuffered) special
    

    Seems like fd should support these for linux systems too...

    feature-request 
    opened by alanxoc3 7
  • Negate filters akin to grep's `-v` switch?

    Negate filters akin to grep's `-v` switch?

    Hey, thanks for fd (and the myriad other tools you've written, big fan)!

    Just now I was trying to find all files that are not owned by a certain user, and I realized I don't know how to do that with fd. From a look through --help, the manpage, and the issue tracker, this doesn't appear to be supported and/or mentioned. I was wondering if you'd consider adding a way to negate filters (akin to grep's -v switch). I believe this would unlock a lot of additional usecases, such as the one I ran into above.

    (Sidenote: I was originally planning to ask for a complete filter algebra, like find's -not/-or/-and/(), but that'd be like hauling out this guy for this problem.)

    feature-request 
    opened by runiq 0
Owner
David Peter
David Peter
A small program which makes a rofi game launcher menu possible by creating .desktop entries for games

rofi-games A small program which makes a `rofi` game launcher menu possible by creating `.desktop` entries for games Installation Manual Clone repo: g

Rolv Apneseth 20 May 4, 2023
This is choose, a human-friendly and fast alternative to cut and (sometimes) awk

Choose This is choose, a human-friendly and fast alternative to cut and (sometimes) awk Features terse field selection syntax similar to Python's list

Ryan Geary 1.4k Jan 7, 2023
locdev is a handy CLI tool that simplifies the process of adding, removing, and listing entries in the hosts file.

locdev ??️ locdev is a handy CLI tool that simplifies the process of adding, removing, and listing entries in the hosts file. You no longer need to de

Nick Rempel 20 Jun 5, 2023
OSINT from your favorite services in a friendly terminal user interface

osintui Open Source Intelligence Terminal User Interface Report Bug · Request Feature Installation First, install Rust (using the recommended rustup i

Will Sheldon 639 Jan 4, 2023
A filesystem driver that allows you to view your Blackboard course contents as if they were normal files and folders on your system!

BlackboardFS Blackboard: noun A website so bad that it might as well be a network drive. BlackboardFS is a filesystem driver that allows you to view y

null 22 Sep 4, 2023
A user-friendly TUI for secure file transfers, with arrow-key and VIM-style navigation

gsftp SFTP with an interactive text-based user interface (TUI). Transfer files through an encrypted connection with a visual interface, so you can see

Ben Jiron 3 Jul 7, 2022
Estratto is a powerful and user-friendly Rust library designed for extracting rich audio features from digital audio signals.

estratto 〜 An Audio Feature Extraction Library estratto is a powerful and user-friendly Rust library designed for extracting rich audio features from

Amber J Blue 5 Aug 25, 2023
A user-friendly TUI client for Matrix written in Rust!

Konoha A user-friendly TUI client for Matrix written in Rust! Notice: The client is currently not usable and is only hosted on GitHub for version cont

L3af 9 Jan 5, 2022
A user-friendly re-implementation of existing hex tools in Rust

Hex A project to create alternate (and more user friendly) versions of existing hex tools. The project can be installed as a extension to the github-c

Sohom Datta 6 Sep 27, 2022
A user-friendly, lightweight TUI for disk imaging

Caligula Burning Tool Caligula is a user-friendly, lightweight TUI for imaging disks. $ caligula burn -h Burn an image to a disk Usage: caligula burn

Astrid Yu 25 Mar 26, 2023
Get your loadshedding schedule in your calendar and never be left in the dark! Open-source, up-to-date, and developer friendly.

Loadshedding schedules in your digital calendar. No apps, no ads, up-to-date, and developer friendly. Get it • Key Features • Using the data • Project

Boyd Kane 117 Apr 26, 2023
This utility traverses through your filesystem looking for open-source dependencies that are seeking donations by parsing README.md and FUNDING.yml files

This utility traverses through your filesystem looking for open-source dependencies that are seeking donations by parsing README.md and FUNDING.yml files

Mufeed VH 38 Dec 30, 2022
Intuitive find & replace CLI (sed alternative)

sd - s[earch] & d[isplace] sd is an intuitive find & replace CLI. The Pitch Why use it over any existing tools? Painless regular expressions sd uses r

Gregory 4k Jan 4, 2023
A simple program for C program IO testing. Written in Rust

A simple program for C program IO testing. Written in Rust, using concurrency to speed up valgrind testing. Make sure to update settings at your first run of the program!

null 1 Feb 22, 2022
fas stand for Find all stuff and it's a go app that simplify the find command and allow you to easily search everything you nedd

fas fas stands for Find all stuff and it's a rust app that simplify the find command and allow you to easily search everything you need. Note: current

M4jrT0m 1 Dec 24, 2021
That program use on platform windows. And if you write any text on uncorrect keyboard layout, that program for that.

?? This program is designed to translate text into the correct layout when typing is incorrect. ?? Example ghbdtn -> привет Just (by default) pressing

Gest Se 5 Jan 26, 2023
API bindings, CLI client and FUSE filesystem for Wiki.js written in Rust.

wikijs-rs API bindings, CLI client and FUSE filesystem for Wiki.js written in Rust. What's inside? Library: Rust bindings to Wiki.js's entire GraphQL

Sandro-Alessio Gierens 4 Sep 19, 2023
A more compact and intuitive ASCII table in your terminal: an alternative to "man 7 ascii" and "ascii"

asciit A more compact and intuitive ASCII table in your terminal: an alternative to man 7 ascii and ascii. Colored numbers and letters are much more e

Qichen Liu 刘启辰 5 Nov 16, 2023
A slightly smart clipboard tool - leverage the filesystem to persist across machines after shutdown.

clipd A slightly smart clipboard using the filesystem under ~/.clipd to persist after shutdown. cowsay "clipd is great" | clipd copy clipd paste ____

null 5 Aug 9, 2022