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

With ``` echo "mÃ" > /tmp/a ``` With our implementation: ``` $ cat /tmp/a| ./target/debug/coreutils wc -L -l 1 2 ``` With GNU: ``` $ cat /tmp/a| /usr/bin/wc -L -l...

U - wc
J - Encoding

Here's a test case for it: ``` printf %c 🙃 ``` GNU: `�` (hex value f0) uutils: `🙃` With this issue we should take care to not make Rust panic...

U - printf

cabulertion. i had problem while building uutils on musl namely i am getting errors : ``` error[E0432]: unresolved import `libc::utmpx` --> src/uucore/utmpx.rs:44:5 | 44 | use libc::utmpx; | ^^^^^^^^^^^ no...

B - medium priority
U - All (uucore)
P - Linux

There is a cool feature in in env (GNU coreutils) 8.30: ```bash $ env --help Usage: /hab/bin/env [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...] Set each NAME to VALUE in the environment...

I - Enhancement
B - low priority
U - env
help wanted

On Windows, the call to `fs::remove_file` fails if the file is read-only. I think, when using the `-f` switch, the following snippet (adapted from the doc of the `fs` library)...

U - rm

Compilation on 64-bit android fails with the following errors: ``` error[E0277]: the trait bound `i64: From` is not satisfied --> src/uucore/src/lib/features/fsext.rs:626:29 | 626 | return self.f_bsize.into(); | ^^^^ the trait...

U - All (uucore)
good first issue

`cargo run --release` failed to install When I tried, it got error ``` ~/coreutils $ cargo build --release Compiling rustix v0.37.26 Compiling syn v1.0.109 Compiling strsim v0.10.0 Compiling blake3 v1.5.0...

With this simple file: ``` cat a a:1 EOF echo -n 'b:' >> a ``` With GNU ``` $ /usr/bin/cut -d' ' -f1 a:1 ``` With our: ``` $ ./target/debug/coreutils...

U - cut

When using `mv d/f d`, GNU `mv` fails with a "same file" error whereas uutils `mv` doesn't fail. This PR makes uutils `mv` fail, too.

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [similar](https://togithub.com/mitsuhiko/similar) | dependencies | minor | `2` -> `2.5.0` | ---...