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

The `wc` would benefit from using SIMD. See: * https://github.com/expr-fi/fastlwc * https://github.com/Freaky/cw Both projects are MIT licensed and the latter is written in Rust. Perhaps one could copy-paste some of...

U - wc

The GNU `printf` command limits the value of arguments it will accept, for example ``` $ printf '%.*d\n' 10 0 0000000000 $ printf '%.*d\n' 2147483648 0 bash: printf: warning: 0:...

U - printf

Similarly to what is reported for `install` in #1809 several other GNU utilities such as `cp`, `ls` and `mv` implement similar options for dealing with files' security contexts: * `ls`:...

U - mv
U - ls
U - cp
U - mkdir

``` ❯ man install | col -b | grep 'preserve.*context' --preserve-context preserve SELinux security context ``` Used in `install -C` (#1756, [coreutils v8.32 ref](https://git.savannah.gnu.org/cgit/coreutils.git/tree/src/install.c?h=v8.32&id=8d13292a73ecf1f265f77731d3ace29866e3d616#n220)).

U - install

I saw commit https://github.com/uutils/coreutils/pull/2624/commits/ef9c5d4fcf13fdc0c7bc8f3a8d14f84c3986ee51 and figured I should test this situation: ``` $ name="0123456789ABCDEF" $ name="${name}${name}${name}${name}" $ name="${name}${name}${name}${name}" $ name="${name:0:255}" $ mkdir deep && cd deep && for i in...

U - cp

I already have PR #1289 which needs some more work before being considered for inclusion in the project. In said PR, cat uses `splice()` instead of `read()` on Linux, drastically...

I tried using the uutils and was compiling another piece of software from source with the `./configure && make && make install` dance, when I got an error saying that...

Can be seen in https://github.com/uutils/coreutils/actions/runs/3817216997/jobs/6493335664 ``` ---- test_touch::test_touch_leap_second stdout ---- current_directory_resolved: run: /home/runner/work/coreutils/coreutils/target/debug/coreutils touch -t 197001010000.60 test_touch_leap_sec ---- test_touch::test_touch_leap_second stderr ---- thread 'main' panicked at 'Error The system's UTC offset...

U - touch
good first issue

Happened here https://github.com/uutils/coreutils/actions/runs/3862874468/jobs/6584760432 ``` ---- test_tail::test_follow_name_truncate4 stdout ---- current_directory_resolved: write(append): /tmp/.tmpxN77vP/file run: /Users/runner/work/coreutils/coreutils/target/debug/coreutils tail -s.1 --max-unchanged-stats=1 -F file write(truncate): /tmp/.tmpxN77vP/file thread 'test_tail::test_follow_name_truncate4' panicked at 'Expected stderr to be empty, but...

U - tail

Bumps [once_cell](https://github.com/matklad/once_cell) from 1.15.0 to 1.16.0. Changelog Sourced from once_cell's changelog. 1.16.0 Add no_std implementation based on critical-section, #195. Deprecate atomic-polyfill feature (use the new critical-section instead) Commits 18e47d7 Merge...

dependencies
rust