Terts Diepraam
6e34d8a53c
hashsum: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
742fe8500c
groups: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
ebe96f1454
fold: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
e3e35cb1a9
fmt: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
df5bf0c2a4
false: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
b5ba2fc5ca
factor: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
55eb4a271b
expr: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
449a536c59
expand: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
4d917e28b2
env: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
812f2db464
echo: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
1f2c3064b8
du: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
db1e630c6c
dirname: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
9bd1c3e967
dircolors: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
739217968f
df: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
11bfb5c73f
dd: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
f5797275b7
date: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
7a0309a5aa
cut: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
88447c2e50
csplit: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
37ab05bd7a
cp: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
99a3dc324c
comm: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
cf78121746
cksum: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
16afe58371
chroot: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
8261cf05f3
chown: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
2576615576
chmod: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
e4acb64880
chgrp: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
f35b132f67
chcon: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
048cfaf97f
cat: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
c76a06e6ea
uucore: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
fb1f9ecf80
basenc: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
7e9529b8b8
arch: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
031bde97bf
base32: clap 3
2022-01-11 19:16:47 +01:00
Terts Diepraam
0fb7ceb1a0
base64: remove clap dependency (handled by base_common)
2022-01-11 19:06:36 +01:00
Terts Diepraam
67e5ede0a1
basename: clap 3
2022-01-11 19:06:36 +01:00
Sylvestre Ledru
6723a54610
Merge pull request #2862 from rivy/fix.whitespace
...
refactor/polish ~ whitespace fixup
2022-01-11 17:51:37 +01:00
kimono-koans
016d5e72ad
ls: Fix padding for dangling links in non-Long formats ( #2856 )
...
* Fix padding for dangling links in non-long formats
Co-authored-by: electricboogie <32370782+electricboogie@users.noreply.github.com>
2022-01-11 12:01:54 +01:00
Jeffrey Finkelstein
cfe5a0d82c
split: correct filename creation algorithm
...
Fix two issues with the filename creation algorithm. First, this
corrects the behavior of the `-a` option. This commit ensures a
failure occurs when the number of chunks exceeds the number of
filenames representable with the specified fixed width:
$ printf "%0.sa" {1..11} | split -d -b 1 -a 1
split: output file suffixes exhausted
Second, this corrects the behavior of the default behavior when `-a`
is not specified on the command line. Previously, it was always
settings the filenames to have length 2 suffixes. This commit corrects
the behavior to follow the algorithm implied by GNU split, where the
filename lengths grow dynamically by two characters once the number of
chunks grows sufficiently large:
$ printf "%0.sa" {1..91} | ./target/debug/coreutils split -d -b 1 \
> && ls x* | tail
x81
x82
x83
x84
x85
x86
x87
x88
x89
x9000
2022-01-10 20:43:22 -05:00
Jeffrey Finkelstein
e5d6b7a1cf
split: correct arg parameters for -b option
2022-01-10 20:43:22 -05:00
Terts Diepraam
f60c36f242
Merge pull request #2610 from miDeb/cp/abuse
...
cp: handle edge cases when dest is a symlink
2022-01-11 00:34:55 +01:00
Roy Ivy III
7a760cae99
refactor/polish ~ re-normalize whitespace
...
* minimize inconsistent/invisible whitespace
- consistent indentation (either spaces-only, tabs, *or* tabs with following spaces [for indentation])
- no internal/invisible tabs
- no trailing whitespace
- EOF EOLNs
2022-01-09 21:35:39 -06:00
Roy Ivy III
bb25129a48
maint/dev ~ update test-repo-whitespace.BAT
dev utility
2022-01-09 21:34:22 -06:00
Roy Ivy III
d33efd8efc
Merge pull request #2857 from rivy/change.rm-vendor
...
change ~ remove (now unneeded) vendored 'nix'
2022-01-09 21:16:31 -06:00
Roy Ivy III
05a2f0ca70
update 'Cargo.lock'
2022-01-09 18:57:25 -06:00
Roy Ivy III
d6b93e42c9
update ~ pin 'retain_mut' to v0.1.2 (with MinSRV maint ToDO)
...
- v0.1.5 uses const generics which aren't stable until rust v1.51.0
2022-01-09 18:57:25 -06:00
Roy Ivy III
d22f3e239c
change ~ remove (now unneeded) vendored nix-v0.23.1-patched
2022-01-09 18:57:25 -06:00
Roy Ivy III
774e72551b
change ~ relax 'nix' version and remove 'nix' patch
...
- code coverage compilation on MacOS latest (MacOS-11+) now works with newer 'nix' versions
2022-01-09 18:57:25 -06:00
Sylvestre Ledru
dcfdeb334d
Merge pull request #2854 from kimono-koans/ls_fix_errno_1
...
ls: Fix Errno 1, print errors at the md call point
2022-01-09 20:56:06 +01:00
Sylvestre Ledru
c69380a193
Merge pull request #2858 from moko256/moko256_ls_metadata_in_is_hidden
...
ls: On Windows use metadata owned by DirEntry instead of retrieved one additionaly
2022-01-09 20:54:54 +01:00
moko256
5659bf8fae
ls: On Windows use DirEntry#metadata() instead of fs::metadata
2022-01-10 02:56:22 +09:00
Justin Tracey
4df2f3c148
join: add test for non-Unicode files
2022-01-08 21:28:29 -05:00
Justin Tracey
cdfe64369d
join: add test for non-linefeed newline characters
2022-01-08 19:51:16 -05:00