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

This PR aims to support the QUOTING_STYLE environment variable as proposed [here](https://github.com/uutils/coreutils/pull/5553#pullrequestreview-1761217383).

see https://manpages.debian.org/unstable/rust-coreutils/rust-test.1.en.html to reproduce, with https://github.com/uutils/coreutils/pull/5092 ``` make manpages man target/debug/man/test.1 ```

I - Documentation
good first issue

addresses #5710 This implements all the functionality tested by gnu/tests/env/env-S.pl. I had to patch the test due to more powerfull implementation and differencences in how parser errors are reported. I...

Should help with tests/cp/link-heap Closes: #5766

With our: ``` $ ./target/debug/coreutils seq --format=d%030g 15 d000000000000000000000000000001 [...] d000000000000000000000000000009 d00000000000000000000000001e+01 d00000000000000000000000001e+01 d00000000000000000000000001e+01 ``` with GNU: ``` /usr/bin/seq --format=d%030g 15 d000000000000000000000000000001 [...] d000000000000000000000000000009 d000000000000000000000000000010 d000000000000000000000000000011 d000000000000000000000000000012 d000000000000000000000000000013 d000000000000000000000000000014 d000000000000000000000000000015...

U - seq
good first issue

When running `cp --link a a`, GNU `cp` doesn't do anything whereas uutils `cp` shows a "same file" error. This PR adapts the behavior of uutils `cp` to match the...

Found with the seq fuzzer ``` $ ./target/debug/coreutils seq -80 18.333615880731813 8158 > a.txt $ LANG=C /usr/bin/seq -80 18.333615880731813 8158 > b.txt $ diff -u a.txt b.txt --- a.txt 2023-12-31...

U - seq
good first issue

When running `cp --remove-destination a a`, GNU `cp` shows a "same file" error whereas uutils `cp` removes the file and then shows a "no such file" error. This PR fixes...