fd (CLI)
Notes
A simple, fast and user-friendly alternative to 'find'
Release notes
v8.1.0
· 1y+
Features
- Add new
--owner [user][:group]command-line option See #307 (pull #581) (@alexmaco) This can be used to filter results by ownership:
Note that the new option is currently not available on Windows.# files matching the 'exercise' pattern, owned by john fd exercise --type file --owner john # files/directories that are not owned by john fd --owner '!john' # … owned by the 'students' group fd --owner ':students' # … owned by the 'students' group, but not by john fd --owner '!john:students' - Add support for a global ignore file (
~/.config/fd/ignoreon Unix), see #575 (@soedirgo) - Do not exit immediately if one of the search paths is missing, see #587 (@DJRHails)
Bugfixes
- Reverted a change from fd 8.0 that enabled colors on all Windows terminals (see below) in order to support older Windows versions again, see #577. Unfortunately, this re-opens #469
- Fix segfault caused by jemalloc on macOS Catalina, see #498
- Fix
--globbehavior with empty pattern, see #579 (@SeamusConnor) - Fix
--list-detailson FreeBSD, DragonFly BSD, OpenBSD and NetBSD. See #573 (@t6)
Changes
- Updated documentation for
--size, see #584