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

Fixes #3454 This implementation more closely matches the behavior of GNU mktemp. Specifically, if using the short-form `-p`, then DIR is required, and if using the long form `--tmpdir` then...

This is to let you know that I’ve archived https://github.com/SimonSapin/rust-utf8, the source repository for https://crates.io/crates/utf-8 which https://crates.io/crates/uu_wc depends on. No action is required as I’m not planning the yank the...

U - wc
good first issue

I built coreutils and then install it per the instructions: cargo build --release cargo install --path . I then noticed the second step just recompiles everything, do I still need...

The GNU coreutils have two tests for `tr`: `tr-case-class.sh` and `tr.pl` (see https://github.com/coreutils/coreutils/tree/master/tests/misc). However, on the [test coverage page](https://uutils.github.io/user/test_coverage.html) and in the [JSON file](https://github.com/uutils/coreutils-tracking/blob/main/gnu-full-result.json) the result of `tr.pl` is missing.

good first issue

```console $ ls -l .cache/ccache drwxr-xr-x - user user 2023-02-09 11:26  0/ drwxr-xr-x - user user 2023-02-09 11:26  1/ drwxr-xr-x - user user 2023-02-09 11:26  2/ drwxr-xr-x...

U - du

When using stdin, its possible that the given stdin does not start from the beginning. An example, ```bash hbina@akarin:~/git/uutils$ stat --format='%s' /etc/group 1088 hbina@akarin:~/git/uutils$ (dd ibs=2 skip=1 count=0; wc -c)...

Found this GNU extension in the code while trying to figure out where the `hashbrown` dependency comes from (it comes from `rust-ini` which is used as a parser for `.env`...

We currently use `rust-ini` to parse `.env` files for `env`'s `-f`/`--file` flag. We could move to a dedicated `.env` parser. There are some libraries for this available on crates.io, but...

U - env

Addresses #3970 - Still needs some cleanup around the error handling. Feedback appreciated! I added Filesystem::from_mount to ensure only valid (i.e. non-overmounted) Filesystem structs are created. I guess the next...