fd (CLI)

notes:

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

Release list
10.2.0
6m+
10.1.0
1y+
10.0.0
1y+
9.0.0
1y+
8.7.1
1y+
8.7.0
1y+
8.6.0
1y+
8.5.3
1y+
8.5.2
1y+
8.5.1
1y+
8.5.0
1y+
8.4.0
1y+
8.3.2
1y+
8.3.1
1y+
8.3.0
1y+
8.2.1
1y+
8.2.0
1y+
8.1.1
1y+
8.1.0
1y+
8.0.0
1y+
Release notes:

Features

  • 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)

Changes

  • Updated documentation for --size, see #584

Copyright © 2023 - All right reserved by Yadoc SAS