coreutils
coreutils copied to clipboard
Cross-platform Rust rewrite of the GNU coreutils
3 out of the 5 stty GNU tests are now passing and was taking a look at why the stty-row-col test was now failing. The issue was that the row...
This PR takes the commit from @3v1n0 to split it from the rest of his PR to add the feature of reading from the COLUMNS variable to determine how long...
There's been an open issue for a while where a bunch of tests have been disabled in users and who because when going through the file lists of users it...
``` $ echo -e "1\n2\n3" > /tmp/3 $ yes ""|gnu-tac - /tmp/3 gnu-tac: /tmp/cutmpBYd5Ra: write error: Disk quota exceeded 3 2 1 $ yes ""|uu-tac - /tmp/3 fish: Process 1544,...
Reading #6182 I noticed that most of the time spent running `cargo run seq 4e4000003 4e4000003` was just BigUint::to_string() Reading the code I found it is being called twice, once...
Add comprehensive tests for SHA3/SHAKE algorithm support This PR adds comprehensive test coverage for SHA3 and SHAKE algorithms with the --length parameter. The SHA3/SHAKE implementation was already merged into main....
This adds comprehensive unit test coverage for the core functions in stty.rs. Tests cover flag parsing, control character handling, combination settings, termios modifications, and trait implementations. Fixes #9061
When no reference file is given, `truncate` performs two `stat()` syscalls: 1. The first one to retrieve the size of the file. 2. The second one to check if the...