coreutils
coreutils copied to clipboard
Cross-platform Rust rewrite of the GNU coreutils
Related #3881
During #3905, I missed to reactivate the ---presume-input-pipe option. This fix will reactivate it.
When two devices are mounted at the same directory and the earlier one is given as a positional argument to `df`, then it should print to stderr the message: ```...
Fix the behavior of `cp` when both `--backup` and `--force` are specified and the source and destination are the same file. Before this commit, `cp` terminated without copying and without...
The `--force` option is not yet implemented on Windows. ``` $ cp --force src dest cp: Option 'force' not yet implemented. ``` _Originally posted by @sylvestre in https://github.com/uutils/coreutils/issues/3966#issuecomment-1254593732_
About 20 tests are currently skipped because we don't have SELinux support enabled `this system lacks SELinux support` Installing the package + enabling requires a reboot. See here: https://github.com/sylvestre/coreutils/commit/8383568b6222d1e15a53b89edd12018b6afbdcdf Maybe...
Full log: https://github.com/uutils/coreutils/actions/runs/3088035582/jobs/4994128254 ``` ---- test_tail::pipe_tests::test_pipe_when_bytes_option_given_input_size_has_multiple_size_of_buffer_size stdout ---- current_directory_resolved: run: /Users/runner/work/coreutils/coreutils/target/debug/coreutils tail -c +0 current_directory_resolved: run: /Users/runner/work/coreutils/coreutils/target/debug/coreutils tail -c -0 current_directory_resolved: run: /Users/runner/work/coreutils/coreutils/target/debug/coreutils tail -c +8193 current_directory_resolved: run: /Users/runner/work/coreutils/coreutils/target/debug/coreutils tail...
Fix a bug where `cp` failed to copy ancestor directories when using the `--parents` option. For example, before this commit: $ mkdir -p a/b/c d $ cp --parents a/b/c d...
Hello, This PR fixes #3886 to handle copying source's directory contents rather than the directory itself. Its my first ever Rust PR. Thanks for the helpful responses, and in case...
``` $ touch -d now /tmp/foo touch: Unable to parse date: now ``` works with GNU tested by GNU in tests/touch/now-owned-by-other.sh