You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add new --owner [user][:group] command-line option See #307 (pull #581) (@alexmaco)
This can be used to filter results by ownership:
# 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'
Note that the new option is currently not available on Windows.
Add support for a global ignore file (~/.config/fd/ignore on 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 --glob behavior with empty pattern, see #579 (@SeamusConnor)
Fix --list-details on FreeBSD, DragonFly BSD, OpenBSD and NetBSD. See #573 (@t6)