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

There seems to be a problem in our incremental build system. I discovered this when comparing uutils against GNU coreutils in a semi-automated way, and my script wrote to some...

help wanted
rust

Dear maintainers, unlike coreutils from the GNU project, `date` can not deal with the following situation: ```shell date --date "Jul 18 06:14:49 2024 GMT" +%s #> date: invalid date 'Jul...

U - date

example: ``` $ /usr/bin/date -d'2005-01-01 +351 day' 2005 $ ./target/debug/coreutils date -d'2005-01-01 +351 day' date: invalid date '2005-01-01 +351 day' ``` Tested here: https://github.com/coreutils/coreutils/blob/master/tests/date/date.pl#L325

U - date

fix for #6658 contains #6599 **Behaviors changed:** - When the destination file is read-only and the `-i` flag is given, instead of prompting with something like `cp: overwrite 'f'?` cp...

Added regex detection to various combination of ".." and "." followed by slashes .

This PR bumps `parking_lot_core` from `0.9.9` to `0.9.10` in order to get rid of an older version of `redox_syscall`. And removes `redox_syscall` from the skip list in `deny.toml`.

While looking at https://github.com/uutils/coreutils/pull/6657 I noticed that `misc/invalid-opt.pl` is missing on our [test coverage page](https://uutils.github.io/coreutils/docs/test_coverage.html).

This shared test case for `cp` and `mv` checks how they behave when the -i and -f flags are given. The test is failing because uu-cp's prompt message differs from...

U - cp