coreutils icon indicating copy to clipboard operation
coreutils copied to clipboard

Cross-platform Rust rewrite of the GNU coreutils

Results 1016 coreutils issues
Sort by recently updated
recently updated
newest added

I've randomly stumbled across https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=992161, a bugreport against GNU Coreutils that they fixed in v9.6. However, it turns out Rust Coreutils also produces incorrect output for the same command (a...

Was hoping to see what the maintainers think of the idea of adding some of the RPM packaging scripts directly into the repo and building them in the CI process...

Fixes CI: #9587 #9632 Fixes flaky test_follow_name_multiple by increasing timeout from 500ms to 3000ms on macOS. Root cause: macOS FS caching delays output visibility when test framework reads redirected temp...

If root mv's a file to a new file system (so it's a copy and delete) then the result is that the file ends up owned a root, even when...

U - mv

Implement modular factorization architecture with Pollard-Rho, ECM, and Fermat algorithms. Adds Montgomery arithmetic optimization and u64 fast-path for improved u128 performance. Dynamic algorithm selection based on input size routes through...

I'm working on systematically going through the CodeCoverage to see what areas have gaps to add testing for. I saw that for the base encoding bins the uu_app did not...

Work in progress for me trying to understand the whole EPIPE situation, on one hand the GNU implementation is supposed to clearly return a 1 in this case, but when...

## Summary - Allocate read buffers with capacity and reuse their spare capacity to avoid zeroing overhead in fast encode/decode paths. - Switch fast encode/decode to read into spare capacity...

Rust's start-up code sets the SIGPIPE signal handler to ignored. However the vast majority of the utilities should use the default signal handler for SIGPIPE rather than ignore SIGPIPE. (in...