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

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-ini](https://togithub.com/zonyitoo/rust-ini) | workspace.dependencies | minor | `0.19.0` -> `0.20.0` | ---...

remove crash! macro.. beginner issue addresses https://github.com/uutils/coreutils/issues/5487 .

Hi, This PR is related to #5451, but not necessarily closes it. On windows, making a hardlink would not be recognized, but now it is: ``` # on windows create...

Step towards: https://github.com/uutils/coreutils/issues/1145 Also relevant: https://github.com/uutils/coreutils/issues/5210 This is an intentional regression. I think we should remove `onig` in any case and we should either find or implement a pure Rust...

added handling for case mentioned in (#4906) and added some tests as well. But i have to say i stumbled upon something i need to ask about: is there a...

Renames and fixes failing test case `test_kill_subshell` in the `timeout` tests. Adds documentation comments, reduces test execution time (was unnecessarily long before) and removes second `sh -c` layer (previously, `sh...

This PR uses `eprintln!` instead of passing `stderr` to `writeln!`. This makes it possible to remove `#![allow(unused_must_use)]`.

Issue: mv: error message "Directory not empty" is confusing #5102 Error message changed to: "A directory with the same name exists at destination"

fixes issue https://github.com/uutils/coreutils/issues/3756 for date util description: `chrono` crate ignores %Z specifier. only prints timezone offset. added crates `chrono-tz` and `iana_time_zone` to calculate the timezone abbreviation and replace %Z specifier...