fd (CLI)

sharkdp/fd last check 44 releases
Notes

A simple, fast and user-friendly alternative to 'find'

Release notes
v6.2.0 · 1y+
view on github

Features

  • Support for filtering by multiple file extensions and multiple file types, see #199 and #177 (@tkadur).

    For example, it's possible to search for C++ source or header files:

    > fd -e cpp -e c -e cxx -e h pattern
    

Changes

  • The size of the output buffer (for sorting search results) is now limited to 1000 entries. This improves the search speed significantly if there are a lot of results, see #191 (@sharkdp).

Bugfixes

  • Fix a bug where long-running searches could not be killed via Ctrl-C, see #210 (@Doxterpepper)
  • fd's exit codes are now in accordance with Unix standards, see #201 (@Doxterpepper)

Other

  • Bash, zsh and fish completion should now work with the Ubuntu .deb packages, see #195 and #209 (@tmccombs and @sharkdp)
  • There is a new section on how to set up fzf to use fd in the README, see #168.