# findutils mit Homebrew, apk, chocolatey, apt, dnf, MacPorts, Nix, pacman, zypper, scoop installieren

Prüfe Installationswege, Executables, Metadaten und Sicherheitshinweise für findutils in AI-Agent-Workflows.

## Installation

```sh
sudo av install brew:findutils
```

Weitere Installationsbefehle:

### macOS

- Homebrew (100%):

```sh
brew install findutils
```

  Evidenz: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install findutils
```

  Evidenz: MacPorts ports tree: sysutils/findutils/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add findutils
```

  Evidenz: Alpine Linux edge package indexes: findutils from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install findutils
```

  Evidenz: Debian stable package indexes: findutils from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install findutils
```

  Evidenz: Fedora Rawhide package metadata: findutils from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#findutils
```

  Evidenz: nixpkgs package indexes: findutils from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix

- pacman (92%):

```sh
sudo pacman -S findutils
```

  Evidenz: Arch Linux sync databases: findutils from https://geo.mirror.pkgbuild.com/core/os/x86_64/core.db.tar.gz

- zypper (92%):

```sh
sudo zypper install findutils
```

  Evidenz: openSUSE Tumbleweed package metadata: findutils from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

### Windows

- Chocolatey (92%):

```sh
choco install findutils
```

  Evidenz: Chocolatey community package catalog: findutils from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','everythingpowertoys'

- Scoop (92%):

```sh
scoop install main/findutils
```

  Evidenz: Scoop official bucket manifest trees: bucket/findutils.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

## Paketfakten

- **Paketschlüssel:** brew:findutils
- **Paketmanager:** Homebrew
- **Version:** 4.11.0
- **Quellzusammenfassung:** Collection of GNU find, xargs, and locate
- **Homepage:** <https://www.gnu.org/software/findutils/>
- **Zuletzt aktualisiert:** 2026-07-11T21:00:08Z
- **Generiert:** 2026-08-03T19:37:03+00:00

## Executables

- find (Alias)
- locate (Alias)
- updatedb (Alias)
- xargs (Alias)

## Installationsverhalten

- Bottle: nicht verfügbar

## Version und Aktualität

- Seite generiert: 2026-08-03
- Manager-Version: 4.11.0
## Projektgeschichte und Nutzung

GNU findutils is the GNU collection of file-searching utilities: find, xargs, locate, and updatedb. It is one of the classic Unix-style packages that turns filesystem traversal, file selection, and command construction into scriptable command-line primitives.

### Projektgeschichte

The findutils NEWS file traces the beginning of findutils history to 1987, with known releases from 1.0 in June 1990 onward. The distribution was renamed to findutils in release 4.1 in November 1994, after earlier 1.x, 2.x, and 3.x releases had already established the GNU versions of find-related tools.

Release 4.0 in November 1994 added a Texinfo manual, man pages for updatedb and locate database formats, find performance work, symlink-loop handling improvements, locate database changes, updatedb command-line options, xargs performance improvements, and a test suite for xargs. Those notes show the package maturing from separate Unix utilities into a maintained GNU distribution.

The modern package continues to evolve around compatibility and edge cases rather than novelty. GNU findutils 4.10.0, released in June 2024, changed xargs signal behavior to improve POSIX compliance, fixed xargs parallel-execution behavior, improved diagnostics, rejected obsolete year-2038-unsafe configurations, and updated translations.

### Adoptionsgeschichte

GNU findutils became a baseline package because find and xargs are core building blocks for shell scripts, build systems, package recipes, cleanup jobs, and system administration. Its utilities are used directly by humans and indirectly by scripts that need portable traversal, filtering, batching, and deletion behavior.

On GNU/Linux systems, GNU findutils is typically the default implementation behind find, xargs, locate, and updatedb. On macOS and other Unix-like systems it is often installed explicitly when users need GNU options or behavior rather than the platform's BSD-derived tools.

### Wie es verwendet wird

find traverses directory trees and selects files by name, type, time, permissions, ownership, size, path, expression logic, and many other predicates. It can print matches, delete files, execute commands, or pass NUL-delimited output into other tools.

xargs turns input lists into command invocations, often pairing with find -print0 for safe processing of filenames containing whitespace or special characters. locate and updatedb provide the faster database-backed counterpart: updatedb builds the filename database and locate searches it.

### Warum Paket-Nerds sich dafür interessieren

GNU findutils is package-nerd bedrock because it is both infrastructure and user interface. Package builds, source cleanups, test runners, release scripts, and sysadmin snippets constantly rely on find and xargs semantics, so small behavior changes can matter across thousands of downstream projects.

It is also a classic example of GNU userland divergence: users on BSD/macOS often install it specifically to get GNU find behavior, while Linux distributions treat it as part of the expected base command set.

### Zeitleiste

- 1987: Beginning of findutils history recorded in the GNU findutils NEWS file.
- 1990: GNU findutils 1.0 release date is recorded as June 22.
- 1994: Release 4.0 adds the Texinfo manual, updatedb and locatedb man pages, find improvements, locate database changes, and xargs tests.
- 1994: Release 4.1 renames the distribution to findutils.
- 2003: Release 4.1.20 marks James Youngman as the new maintainer.
- 2015: Release 4.6.0 is described as the first stable release since 4.4.2.
- 2024: Release 4.10.0 ships POSIX-related xargs changes, diagnostics improvements, year-2038 build checks, documentation updates, and translation updates.

### Related projects

- GNU grep, GNU sed, GNU coreutils, and GNU tar are neighboring command-line packages in the same GNU userland culture.
- BSD find and BSD xargs are the comparison point on macOS and BSD systems.
- mlocate and plocate are related locate-style tools in the broader filename-database search family.

### Quellen

- <https://www.gnu.org/software/findutils/>
- <https://www.gnu.org/software/findutils/manual/html_mono/find.html>
- <https://ftpmirror.gnu.org/gnu/findutils/findutils-4.10.0.tar.xz>
- <https://git.savannah.gnu.org/git/findutils.git>


## Sicherheitshinweise

narrow executable package without higher-risk signals.

- **Geiger-Risiko:** grün / niedrig
- narrow executable package without higher-risk signals

## Andere Paketmanager-Einträge

- Debian apt - findutils - 4.10.0-3: normalized package name match | Debian stable package indexes: findutils from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | utilities for finding files--find, xargs | https://savannah.gnu.org/projects/findutils/
- Debian apt - locate - 4.10.0-3: normalized package name match | Debian stable package indexes: locate from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | maintain and query an index of a directory tree | https://savannah.gnu.org/projects/findutils/
- Nix - findutils: normalized package name match | nixpkgs package indexes: findutils from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix
- Ubuntu apt - findutils - 4.9.0-5build1: normalized package name match | Ubuntu 24.04 LTS package indexes: findutils from https://archive.ubuntu.com/ubuntu/dists/noble/main/binary-amd64/Packages.gz | utilities for finding files--find, xargs | https://savannah.gnu.org/projects/findutils/
- Ubuntu apt - locate - 4.9.0-5build1: normalized package name match | Ubuntu 24.04 LTS package indexes: locate from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | maintain and query an index of a directory tree | https://savannah.gnu.org/projects/findutils/
- apk - findutils - 4.10.0-r1: normalized package name match | Alpine Linux edge package indexes: findutils from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | GNU utilities for finding files | https://www.gnu.org/software/findutils/
- apk - findutils-doc - 4.10.0-r1: normalized package name match | Alpine Linux edge package indexes: findutils-doc from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | GNU utilities for finding files (documentation) | https://www.gnu.org/software/findutils/
- apk - findutils-locate - 4.10.0-r1: normalized package name match | Alpine Linux edge package indexes: findutils-locate from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | locate and updatedb from findutils | https://www.gnu.org/software/findutils/
- apk - findutils-locate-doc - 4.10.0-r1: normalized package name match | Alpine Linux edge package indexes: findutils-locate-doc from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | locate and updatedb from findutils (documentation) | https://www.gnu.org/software/findutils/
- dnf - findutils - 4.11.0-2.fc45: normalized package name match | Fedora Rawhide package metadata: findutils from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | The GNU versions of find utilities (find and xargs) | https://www.gnu.org/software/findutils/
- pacman - findutils - 4.11.0-1: normalized package name match | Arch Linux sync databases: findutils from https://geo.mirror.pkgbuild.com/core/os/x86_64/core.db.tar.gz | GNU utilities to locate files | https://www.gnu.org/software/findutils/
- zypper - findutils - 4.11.0-1.2: normalized package name match | openSUSE Tumbleweed package metadata: findutils from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | The GNU versions of find utilities (find and xargs) | https://www.gnu.org/software/findutils/
- zypper - findutils-lang - 4.11.0-1.2: normalized package name match | openSUSE Tumbleweed package metadata: findutils-lang from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Translations for package findutils | https://www.gnu.org/software/findutils/
- MacPorts - findutils: normalized package name match | MacPorts ports tree: sysutils/findutils/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Chocolatey - findutils: normalized package name match | Chocolatey community package catalog: findutils from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','everythingpowertoys'
- Scoop - main/findutils: normalized package name match | Scoop official bucket manifest trees: bucket/findutils.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1


## Combined YAML source

View the package source record on GitHub. [combined/findutils.yml](https://github.com/mxcl/pkgdb/blob/main/combined/findutils.yml)


## Quellen

- pkg.so package database
- Geiger risk classifier
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
