coreutils icon indicating copy to clipboard operation
coreutils copied to clipboard

Cross-platform Rust rewrite of the GNU coreutils

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

I talked about this a bit on Discord, but I think it's time to actually start talking about a new library I've been working on. So here goes: **introducing the...

Uncomment a test case fixed by commit 53c4b0b81e528adc340dd803bf597fa3fad1bb4c (pull request https://github.com/uutils/coreutils/pull/4091).

I ran the whole test suite on my linux machine and the `test_du::test_du_time` test fails with ``` --- test_du::test_du_time stdout ---- current_directory_resolved: run: /home/lenny/workspace/external/uutils/uutils/target/debug/coreutils touch -a -t 201505150000 date_test run:...

U - touch

Hi, Many thanks for these utilities - especial thanks for the Windows binaries. I am trying to format numbers as currency in the UK. e.g. £12,000.99 The UK pound character...

U - numfmt

If there's an error in `tr` with error output then `tr` ends the `stderr` with two newlines instead of just one. This behavior becomes evident with #4261 because the `stderr`...

U - tr

When I was working on #4073, I discovered that timeout never terminates the subprocess under the sh shell. Is this expected behavior? ```sh $ timeout .5 sh -c "yes |...

U - timeout

Like discussed in #4261, this pr restructures `UCommand` to run a command in a shell context (`sh -c` on unix systems and `cmd /C` on windows systems) per default. A...

`ls` is supposed to have an exit status of 1 for "minor problems". This includes trying to dereference symbolic links (via `-L`) when they don't link anywhere. The lack of...

U - ls
good first issue

Implements the --invalid option from issue https://github.com/uutils/coreutils/issues/1280.

Like discussed in #4261, this pr removes the trimming of the `stdout` in `CmdResult::stdout_matches` and `CmdResult::stdout_does_not_match`. The tests using these methdos are adjusted to match the trailing newline instead of...