https://github.com/uutils/findutils
Rust implementation of findutils
https://github.com/uutils/findutils
cross-platform findutils rust
Last synced: 20 days ago
JSON representation
Rust implementation of findutils
- Host: GitHub
- URL: https://github.com/uutils/findutils
- Owner: uutils
- License: mit
- Created: 2017-02-27T16:13:59.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2025-04-05T08:24:14.000Z (28 days ago)
- Last Synced: 2025-04-06T16:04:56.944Z (27 days ago)
- Topics: cross-platform, findutils, rust
- Language: Rust
- Homepage:
- Size: 1.05 MB
- Stars: 410
- Watchers: 17
- Forks: 49
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-starred - uutils/findutils - Rust implementation of findutils (rust)
README
# findutils
[](https://crates.io/crates/findutils)
[](https://discord.gg/wQVJbvJ)
[](https://github.com/uutils/findutils/blob/main/LICENSE)
[](https://deps.rs/repo/github/uutils/findutils)
[](https://codecov.io/gh/uutils/findutils)Rust implementation of [GNU findutils](https://www.gnu.org/software/findutils/): `xargs`, `find`, `locate` and `updatedb`.
The goal is to be a full drop-in replacement of the original commands.## Run the GNU testsuite on rust/findutils:
```
bash util/build-gnu.sh# To run a specific test:
bash util/build-gnu.sh tests/misc/help-version.sh
```## Comparing with GNU

## Build/run with BFS
[bfs](https://github.com/tavianator/bfs) is a variant of the UNIX find command that operates breadth-first rather than depth-first.
```
bash util/build-bfs.sh# To run a specific test:
bash util/build-bfs.sh posix/basic
```For more details, see https://github.com/uutils/findutils-tracking/