Commit graph

11226 commits

Author SHA1 Message Date
Sylvestre Ledru
f31c017275
Merge pull request #5324 from cakebaker/expr_fix_and_and_or
expr: interpret numbers != 0 as true for | and &
2023-09-26 22:55:50 +02:00
renovate[bot]
6c7a20fc18
chore(deps): update rust crate sha2 to 0.10.8 2023-09-26 16:57:54 +00:00
Daniel Hofstetter
ff500d7d6f expr: interpret numbers != 0 as true for | and & 2023-09-26 16:24:00 +02:00
Daniel Hofstetter
ffbe452b01
Merge pull request #5322 from uutils/renovate/exacl-0.x
chore(deps): update rust crate exacl to 0.11.0
2023-09-26 11:42:59 +02:00
Sylvestre Ledru
7ebdab694c
Merge pull request #4988 from sylvestre/cut-huge
cut-huge-range.sh: make cut fails on usize::MAX
2023-09-26 11:34:16 +02:00
Sylvestre Ledru
e0a4143a69
Merge pull request #4642 from sylvestre/fuzz-expr
Fuzz the expr command
2023-09-26 11:33:48 +02:00
renovate[bot]
2a97eab685
chore(deps): update rust crate exacl to 0.11.0 2023-09-26 07:45:23 +00:00
Sylvestre Ledru
265c258713 ranges: add unit tests to verify the parsing
To test them:
$ cargo test -p uucore --features ranges
2023-09-26 09:40:21 +02:00
Sylvestre Ledru
99120d32c1 cut: fail when the input == usize::MAX 2023-09-26 09:40:21 +02:00
Sylvestre Ledru
4038907de6
Merge pull request #5323 from cakebaker/run_gnu_test_sh_fix_issue_with_run_root
run-gnu-test.sh: accept "run-root" as first param
2023-09-26 09:39:54 +02:00
Daniel Hofstetter
22f72544a8 run-gnu-test.sh: accept "run-root" as first param 2023-09-26 09:33:14 +02:00
Sylvestre Ledru
5fde331c8f
Merge pull request #5318 from sylvestre/gnu-er
run-gnu-test.sh: show if we can't find the file
2023-09-25 15:39:26 +02:00
Sylvestre Ledru
9fcf4cd8e5 run-gnu-test.sh: show if we can't find the file
Otherwise, the error can be cryptic

Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
2023-09-25 14:41:42 +02:00
Terts Diepraam
45487d47b8 extract Base enum 2023-09-25 12:02:45 +02:00
Daniel Hofstetter
a3bf556259
Merge pull request #5317 from uutils/renovate/wild-2.x
fix(deps): update rust crate wild to 2.2
2023-09-25 09:20:55 +02:00
Daniel Hofstetter
e39c8d6776
Merge pull request #5319 from uutils/renovate/memmap2-0.x
chore(deps): update rust crate memmap2 to 0.8
2023-09-25 06:47:07 +02:00
renovate[bot]
3da5809910
chore(deps): update rust crate memmap2 to 0.8 2023-09-25 01:21:46 +00:00
renovate[bot]
6aba3a4d67
fix(deps): update rust crate wild to 2.2 2023-09-24 20:04:53 +00:00
Sylvestre Ledru
ec7ced2518 Fuzz the expr command 2023-09-24 18:47:15 +02:00
Daniel Hofstetter
31d32e3ee2
Merge pull request #5310 from tertsdiepraam/expose-whoami
Expose `whoami` function (for nushell!)
2023-09-24 15:24:42 +02:00
Sylvestre Ledru
1c03d1614c
Merge pull request #4199 from cakebaker/tail_remove_unused_var_rename_other_var
tail: remove unused "_event_counter"; rename "_timeout_counter" to "timeout_counter"
2023-09-24 14:47:33 +02:00
Leviticoh
b90b59c003
uniq: added support for deprecated -N option (#4228) 2023-09-24 14:44:44 +02:00
Sylvestre Ledru
e8b27d1714
Merge pull request #4527 from bbara/dd-skip-seek
dd: fix GNU test 'dd/skip-seek-past-dev'
2023-09-24 14:43:15 +02:00
Terts Diepraam
1dcf3e6353 expose whoami function (for nushell!) 2023-09-24 14:13:16 +02:00
Terts Diepraam
4ca792d2ff
Merge pull request #5306 from cakebaker/nl_fix_output_order_if_stdin_and_files_are_mixed
nl: fix output order if stdin and files are mixed
2023-09-24 12:12:54 +02:00
Terts Diepraam
50255a2463
Merge pull request #5305 from sylvestre/dired-prefix
ls --dired: replace the previous "total: xx" padding method
2023-09-24 12:09:26 +02:00
tommady
bd0fb817a7
cp: fix the result of inodes are not the same when preserve links is flagged (#5064)
Should fix:
```
rm -rf a b c
touch a
ln -s a b
mkdir c
./target/debug/coreutils cp --preserve=links -R -H a b c
a_inode=$(ls -i c/a|sed 's,c/.*,,')
b_inode=$(ls -i c/b|sed 's,c/.*,,')
echo "$a_inode" = "$b_inode"
```
2023-09-24 10:53:27 +02:00
Benjamin Bara
17f4d17021 tests: dd: add skip-seek-past-dev tests
These tests try to read or write past a block device, where the block device is either given as
stdin or stdout. It requires access to the block device, and therefore is executed as root. For now,
it is assumed that a block device "/dev/sda1" with a size smaller than 10000000000000000 exists.
2023-09-24 10:00:10 +02:00
Benjamin Bara
8a9b29ddfb dd: fix GNU test 'dd/skip-seek-past-dev' 2023-09-24 10:00:10 +02:00
Benjamin Bara
616c3f4a7f util: extend run_ucmd_as_root for stdin/stdout
This enables to give path to files (as str) which are then used as either stdin or stdout.
2023-09-24 10:00:10 +02:00
Daniel Hofstetter
a4a69c8ee7 tail: "_timeout_counter" -> "timeout_counter" 2023-09-24 09:59:06 +02:00
Daniel Hofstetter
306a58a731 tail: remove unused var "_event_counter" 2023-09-24 09:59:06 +02:00
Sylvestre Ledru
e2e42ac265
Merge pull request #5304 from KAAtheWiseGit/main
`rm`: make the utility public
2023-09-23 18:38:25 +02:00
KAA the Wise
4b76b2f332 rm: document PromptProtected interactive mode option 2023-09-23 15:57:30 +03:00
Daniel Hofstetter
06219350fa nl: fix output order if stdin and files are mixed 2023-09-23 14:44:30 +02:00
Sylvestre Ledru
ba3f266b2c
Merge pull request #5285 from cakebaker/nl_multiple_files
nl: make line number and --join-blank-lines work over multiple files
2023-09-23 09:34:04 +02:00
Sylvestre Ledru
48613b4717 ls --dired: replace the previous "total: xx" padding method
by something easier
2023-09-23 09:31:16 +02:00
Sylvestre Ledru
30f1fceddc
add nushell to the list of ignored names 2023-09-23 09:29:00 +02:00
Sylvestre Ledru
e2561f53a4
Merge pull request #5303 from uutils/renovate/md-5-0.x
chore(deps): update rust crate md-5 to 0.10.6
2023-09-22 23:31:03 +02:00
Sylvestre Ledru
d6da6fb546
Merge pull request #5302 from cakebaker/relpath_fix_5300
relpath: show error if no argument provided
2023-09-22 23:30:52 +02:00
KAA the Wise
20fb473da8 rm: make the remove function public 2023-09-22 19:18:27 +03:00
KAA the Wise
75044c1bc4 rm: make option types public
Made `Options` and `InteractiveMode` public and added documentation for them.
2023-09-22 19:17:24 +03:00
renovate[bot]
cc6a1ae4f4
chore(deps): update rust crate md-5 to 0.10.6 2023-09-22 15:40:11 +00:00
Sylvestre Ledru
4094231b89
Merge pull request #5301 from cakebaker/ls_fix_failing_test
ls: fix test which fails if /tmp uses tmpfs
2023-09-22 13:24:53 +02:00
Daniel Hofstetter
38831c46d1 relpath: show error if no argument provided
Fixes #5300
2023-09-22 10:58:12 +02:00
Daniel Hofstetter
0794d1338d ls: fix test which fails if /tmp uses tmpfs 2023-09-22 10:43:23 +02:00
Daniel Hofstetter
a2691c9f4a
Merge pull request #5299 from sylvestre/dired-2
ls --dired - some minor cleanup
2023-09-22 06:50:43 +02:00
Sylvestre Ledru
42d93fcc59
Merge pull request #5291 from cakebaker/ci_fix_checkscripts_yml
ci: remove committing from CheckScripts.yml
2023-09-21 22:13:13 +02:00
Sylvestre Ledru
9de7ab84ac
Merge pull request #5298 from uutils/renovate/sha1-0.x
chore(deps): update rust crate sha1 to 0.10.6
2023-09-21 22:12:43 +02:00
Sylvestre Ledru
a12dd2ee1e ls rename the function for consistency 2023-09-21 21:23:08 +02:00