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
Colorized output is now significantly faster, see #720 and #853 (@tavianator)
Writing to stdout is now buffered if the output does not go to a TTY. This increases performance
when the output of fd is piped to another program or to a file, see #885 (@tmccombs, original
implementation by @sourlemon207)
File metadata is now cached between the different filters that require it (e.g. --owner, --size), reducing the number of stat syscalls when multiple filters are used; see #863
(@tavianator, original implementation by @alexmaco)
Features
Don't buffer command output from --exec when using a single thread. See #522
fd doesn't show substituted drive on Windows, see #365
Properly handle write errors to devices that are full, see #737
Use local time zone for time functions (--change-newer-than, --change-older-than), see #631 (@jacobmischka)
Support --list-details on more platforms (like BusyBox), see #783
The filters --owner, --size, and --changed-{within,before} now apply to symbolic links
themselves, rather than the link target, except when --follow is specified; see #863