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

Currently, we use `-b` as a shortcut for `--base64`. However, this is incorrect, the behavior of `-b` was changed in GNU 9.4 according to https://github.com/coreutils/coreutils/blob/master/NEWS: ``` 'cksum -b' no longer...

U - cksum

There is a symlink `ipaddr` pointing to non-existent file `/bin/busybox`. # Outputs ``` pwork-server1:/bin$ ls --color=auto -l ip* -rwxr-xr-x 1 root root 606712 Nov 6 20:24 ip ls: cannot access...

U - ls

This sounds like a feature that people probably use: ```console $ date --resolution 0.000000001 $ cargo run date --resolution error: unexpected argument '--resolution' found tip: a similar argument exists: '--version'...

U - date

This PR makes several changes to `expr`: 1. Instead of giving a "missing argument" error if a closing parenthesis could not be found (through the `?` operator on a call...

Steps to reproduce: - Create two regular files, `README.md` and `good/README.md`, and an initially-empty directory `tmp/`. - Inside `tmp`, create an empty regular file `foo`, and a symlink `README.md` that...

U - cp

Steps to reproduce: - Create two regular files, `README.md` and `good/README.md`, and a directory `target/` that does not contain anything named `README.md`. - chdir into `target/`. - Try to copy...

U - cp

This probably affects other types/modes of copying, too, since we have a lot of shurt-cutting currently. Steps to reproduce: - Have two files that are hardlinks - Copy them with...

U - cp

Quick attempt at fixing issue https://github.com/uutils/coreutils/issues/6177 I'm implementing a custom type for the value parser so that I have the option to not fail early if the path does not...

with GNU: ``` $ LANG=C /usr/bin/date -d"@1690466034" Thu Jul 27 15:53:54 CEST 2023 ``` with our: ``` $ date -d"@1690466034" date: invalid date '@1690466034' ```

U - date
good first issue

I want to not have to type `rm -r` when I remove a directory, and also I want it secure so I've aliased rm to `coreutils rm -rI`. The problem...

U - rm