coreutils
coreutils copied to clipboard
Cross-platform Rust rewrite of the GNU coreutils
with 0.0.30: ``` thread 'main' panicked at src/uu/chroot/src/chroot.rs:453:45: called `Result::unwrap()` on an `Err` value: Os { code: 2, kind: NotFound, message: "No such file or directory" } note: run with...
In the CI, various deprecation warnings show up in `musl`-related jobs (I omitted duplicate warnings): ``` warning: use of deprecated type alias `libc::time_t`: This type is changed to 64-bit in...
- Add a `--random-seed` option that allows using a string as a seed for deterministic output. For example: `shuf --random-seed=🦀 -i1-10`. This comes with a forward compatibility commitment: we have...
mktemp with empty tmpdir parameter will use env::temp_dir to get the default temp directory, which need to be read from environment variables on windows, otherwise it will try to use...
uucore's `get_uptime` function: - Returns a signed integer value (but the uptime can't be a negative value?) - Ignores fractional parts of a second even though the Linux kernel provides...
This pull request fixes several bugs in csplit by rewriting the code to have one function per pattern type. The functions are * `up_to_line_repeat` for patterns like `123 {45}` *...
I am going to collect some finding of my work (@cakebaker probably has other). * -Zprofile has been removed from rustc - https://github.com/rust-lang/rust/pull/131829 we should use -Cinstrument-coverage instead * we...
Adds support for binary number sizes. One of the subtasks in https://github.com/uutils/coreutils/issues/7738 cc [BenWiederhake](https://github.com/BenWiederhake)
All links in this page pointing to `DEVELOPMENT.html` show a 404 page. https://uutils.github.io/coreutils/docs/contributing.html#improving-the-gnu-compatibility DEVELOPMENT.html doesn't seem to exist.
`tee` has started failing its GNU test in the CI, when it had been passing on the main branch. See, e.g., https://github.com/uutils/coreutils/pull/7765#issuecomment-2817349557, https://github.com/uutils/coreutils/pull/7801#issuecomment-2817332984, https://github.com/uutils/coreutils/pull/7799#issuecomment-2817259728. Relevant test output is: ``` FAIL:...