coreutils
coreutils copied to clipboard
Cross-platform Rust rewrite of the GNU coreutils
### Issue Using the Zsh completions of the `coreutils` binary created by running `cargo run completion coreutils zsh` results in an error: ``` coreutils _coreutils:1418: invalid subscript _coreutils:1419: bad pattern:...
Talking to the nushell people, they might need to know which argument was the cause of the error. I think this could just be some index of the argument. So...
While debugging tests for a `pinky` PR (#3155), I saw some inconsistent behavior between GNU's `users` and `who` utils vs. ours. The PR adds a fake entry to the system's...
uu-date always prints the (default) %c format like this, regardless of the LC_TIME setting: % LC_TIME=en_DK.utf8 uu-date Tue Feb 15 13:03:36 2022 Expected (output from GNU coreutils date): % LC_TIME=en_DK.utf8...
It shall allow programs that use GitHub as their ultimate origin point for binaries to not worry about versions, instead always pulling the latest version. Not everything supports RegEx. For...
Instead of our custom script for tagging and publishing releases, I think we should use [`cargo release`](https://github.com/crate-ci/cargo-release) (or some other similar tool). However, I think there's a small problem with...
Currently we use Oniguruma for `expr` because it has support for the GNU regex syntax. Ideally, we should be using something like [Rust regex](https://github.com/rust-lang/regex), but AFAICT this involves either converting...
For context, we recently made a [policy on platform support](https://uutils.github.io/coreutils/book/platforms.html). The gist of that is that a platform is Tier 1 if we have CI for it. I listed Redox...
As came up in https://github.com/uutils/coreutils/pull/5489, we'd love to have CI for Illumos! Based on the advice from @Toasterson (https://github.com/uutils/coreutils/pull/5489#issuecomment-1793402756), that should probably be done using a Vagrant box: https://github.com/twpayne/chezmoi/blob/v2.9.3/.github/workflows/main.yml#L173-L191 Running...
Fixes #4725 This fixes a flaky test that causes [real problems](https://github.com/uutils/coreutils/pull/6018#issuecomment-1963035379). As the test already documents, `-u -i` won't show a prompt, so trying to pipe some stdin into it...