coreutils
coreutils copied to clipboard
Cross-platform Rust rewrite of the GNU coreutils
OSS-Fuzz has found a bug in this project. Please see https://oss-fuzz.com/testcase?key=5129153284472832 for details and reproducers. This issue is mirrored from https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=422016813 and will auto-close if the status changes there. If...
OSS-Fuzz has found a bug in this project. Please see https://oss-fuzz.com/testcase?key=4526996075380736 for details and reproducers. This issue is mirrored from https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=421940228 and will auto-close if the status changes there. If...
This is my initial attempt at fixing #7961. I'm fairly certain this isn't the correct way of doing this, so I'm very much open to ideas on how I could...
(test system: WSL2, Ubuntu 24.04 - also reproducible in github codespaces) gnu coreutils behavior is that child process is terminated when receiving TERM signal: ``` $ timeout 42 sleep 42...
gnu coreutils will show end of device for block devices. In current implementation this is skipped as a block devices are recognized as untailable. The change ensures that we first...
With gnu coreutils, tail is able to output the end of a device, in my case '/dev/sdc' ``` sudo tail -c 16 /dev/sdc | hexdump 0000000 d566 3260 cee2 32e5...
I noticed this today: **gnu/coreutils:** ``` % mkdir abc % stat -c%u:%g abc 1000:1000 % doas chown root: abc % stat -c%u:%g abc 0:0 ``` **uutils/coreutils:** ``` # mkdir abc...
install(1) compatibility: autotools+audit-userspace `make install` failure (multiple `-m` arguments)
Hello, during some tests I noticed [`audit-userspace`](https://github.com/linux-audit/audit-userspace) is not able to install on a uutils based system. After lots of debugging I tracked it down to: **audisp/plugins/af_unix/Makefile.am** ``` install-data-hook: mkdir...
Maybe the test isn't executed on Windows? https://app.codecov.io/gh/uutils/coreutils/blob/main/src/uu/whoami/src/platform/windows.rs
Tested with https://github.com/uutils/coreutils/releases/download/0.2.0/coreutils-0.2.0-x86_64-unknown-linux-musl.tar.gz ``` > file coreutils coreutils: ELF 64-bit LSB pie executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-musl-x86_64.so.1, stripped ``` This appears to be a regression, or...