jfinkels
jfinkels
Change `mktemp` so that it respects the value of the `TMPDIR` environment variable, if no directory is otherwise specified in its arguments. For example, before this commit $ TMPDIR=. mktemp...
From https://github.com/uutils/coreutils-tracking/blob/main/gnu-full-result.json, here are the remaining GNU test cases that are marked as ERROR (as opposed to FAIL, PASS, or SKIP): - [x] tests/cp/cp-parents.sh - see #3332, #3894, #4071 -...
Adjust the rendering of the concise byte counts in both SI and IEC units to better match the behavior of GNU dd. Before this commit, $ head -c 1024 /dev/zero...
When using `-m` option to `mkdir`, the permissions of the created directory differ from those of GNU mkdir. I think this may have something to do with the umask. GNU...
~*Help wanted!* This change was previously merged in pull request #3205. Unfortunately, it resulted in an issue with the GNU test suite; see issue #3268. The change was subsequently reverted...
Executive summary: Setup: ``` cargo build -p uu_dd echo 'abcd' > infile ``` GNU dd: ``` $ (dd bs=1 skip=1 count=0 status=none && cat -) < infile bcd ``` uutils...
Here are some test cases that we would need to satisfy in order to match the behavior of GNU `seq` when given various invalid format string templates: ```rust #[test] fn...
The `uutils` version of `tac` disagrees with GNU `tac` in the case where `stdin` is closed on the command line: GNU prints an error message to `stderr` and returns exit...
This is the same issue I reported previously in #2951, but I noticed that this is a general problem with all programs. The problem is that usage errors that arise...
Environment: Ubuntu 20.04.4, coreutils v8.30, `sh` links to `dash` The uutils version of timeout fails to kill the child process when it is given as `sh -c "..."`. GNU timeout:...