coreutils
coreutils copied to clipboard
Cross-platform Rust rewrite of the GNU coreutils
Should fix tests/cp/backup-1.sh
Hello uutils team, I know there has been some interest in implementing these tools in previous issues. Would you consider setting up a repository with basic structure? The three tools...
I stopped counting the number of time I saw this issue in the CI: ``` run: /Users/runner/work/coreutils/coreutils/target/debug/coreutils uniq -D Test 111 current_directory_resolved: run: /Users/runner/work/coreutils/coreutils/target/debug/coreutils uniq -D -w1 Test 112 current_directory_resolved:...
The `uutils` version of `tac` disagrees with GNU `tac` in the case where `stdin` is closed on the command line: GNU prints an error message to `stderr` and returns exit...
This is the same issue I reported previously in #2951, but I noticed that this is a general problem with all programs. The problem is that usage errors that arise...
GNU sort v. Rust sort: ``` $ /usr/bin/sort --buffer-size=50% < /dev/null $ target/release/coreutils sort --buffer-size=50% < /dev/null sort: invalid --buffer-size argument '50%' ``` Relevant excerpts from GNU sort manpage: ```...
Environment: Ubuntu 20.04.4, coreutils v8.30, `sh` links to `dash` The uutils version of timeout fails to kill the child process when it is given as `sh -c "..."`. GNU timeout:...
One of the things left for future work in #3396 was [xattr](https://en.wikipedia.org/wiki/Extended_file_attributes) support for Android, as part of the implementation for `cp --archive`. I tested that xattrs do work on...
This code has a comment describing a workaround for a missing feature in clap that was not available until clap 3: https://github.com/uutils/coreutils/blob/bf3a86f654b5982b124dd385782ee8feea10abbd/src/uu/mktemp/src/mktemp.rs#L89-L98 Perhaps some code here can be simplified now...
A simple example of inputs/outputs of what GNU's Coreutils is capable of is visible at https://www.cyberciti.biz/tips/linux-unix-get-yesterdays-tomorrows-date.html This issue was suggested by @tertsdiepraam in https://github.com/uutils/coreutils/issues/2685#issuecomment-1111308354 (which might be interesting to solve...