A simple, fast and user-friendly alternative to 'find'
A simple, fast and user-friendly alternative to 'find'
A simple, fast and user-friendly alternative to 'find'
--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.~/.config/fd/ignore
on Unix), see #575 (@soedirgo)--glob
behavior with empty pattern, see #579 (@SeamusConnor)--list-details
on FreeBSD, DragonFly BSD, OpenBSD and NetBSD. See #573 (@t6)--size
, see #584