Jeffrey Finkelstein
dd9ce9d267
paste: return UResult from uumain() function
2021-12-28 20:27:13 -05:00
Jeffrey Finkelstein
45a5fb8391
od: return UResult from uumain() function
2021-12-28 20:07:21 -05:00
Jeffrey Finkelstein
595d4dbb95
numfmt: return UResult from uumain() function
2021-12-28 19:46:20 -05:00
Jeffrey Finkelstein
f91773037e
nohup: return UResult from uumain() function
2021-12-28 14:45:29 -05:00
Jeffrey Finkelstein
b89bb391c2
nice: return UResult from uumain() function
2021-12-27 19:44:26 -05:00
Jeffrey Finkelstein
d8c5b50923
mv: return UResult from uumain() function
2021-12-27 19:35:38 -05:00
Jeffrey Finkelstein
882a293974
mknod: return UResult from uumain() function
2021-12-27 18:49:35 -05:00
Jeffrey Finkelstein
b8bc5129fa
mkfifo: return UResult from uumain() function
2021-12-27 18:37:28 -05:00
Jeffrey Finkelstein
14c62cc5e3
logname: return UResult from uumain() function
2021-12-27 18:32:39 -05:00
Jeffrey Finkelstein
a882b0cf3e
link: return UResult from uumain() function
2021-12-27 18:26:25 -05:00
Jeffrey Finkelstein
a8c2beb548
join: return UResult from uumain() function
2021-12-27 15:53:21 -05:00
Jeffrey Finkelstein
354cd7d3df
hashsum: return UResult from uumain() function
2021-12-27 15:46:47 -05:00
Jeffrey Finkelstein
c3cf88df83
groups: return UResult from uumain() function
2021-12-27 15:22:55 -05:00
Sylvestre Ledru
f7584cb755
Merge pull request #2794 from jfinkels/nightly-clippy-fixes
...
fixes suggested by nightly version of clippy
2021-12-27 19:50:08 +01:00
Jeffrey Finkelstein
be13ff4890
fmt: return UResult from uumain() function
2021-12-26 16:41:16 -05:00
Jeffrey Finkelstein
e9fc964a3e
factor: return UResult from uumain() function
2021-12-26 16:06:33 -05:00
Jeffrey Finkelstein
bb3efc7c30
expand: return UResult from uumain() function
2021-12-26 16:02:35 -05:00
Jeffrey Finkelstein
adce52571d
dircolors: return UResult from uumain() function
2021-12-26 15:57:23 -05:00
Ebuka Agbanyim
ae6e3fdaf7
cut: use UResult
2021-12-26 20:56:23 +00:00
Terts Diepraam
7ae9e0a7eb
cksum: accept directories as empty files
2021-12-26 21:50:13 +01:00
Jeffrey Finkelstein
f2bf1a7ff7
fixes suggested by nightly version of clippy
2021-12-26 15:45:33 -05:00
Jeffrey Finkelstein
a84f57dd1f
fixup! csplit: return UResult from uumain() function
2021-12-26 15:20:09 -05:00
Terts Diepraam
8885263ad5
cksum: use UIoError
2021-12-26 18:41:25 +01:00
Terts Diepraam
4b4a83ac2e
Merge pull request #2789 from jfinkels/cksum-uresult
...
cksum: return UResult from uumain() function
2021-12-26 18:30:30 +01:00
Jeffrey Finkelstein
a26fbe7c8e
csplit: return UResult from uumain() function
2021-12-25 20:19:16 -05:00
Sylvestre Ledru
5f71e0c8c8
Merge pull request #2790 from jfinkels/comm-uresult
...
comm: return UResult from uumain() function
2021-12-25 10:41:39 +01:00
Sylvestre Ledru
4ada922a4a
Merge pull request #2741 from jfinkels/seq-width-negative-decimal
...
seq: correct width for certain negative decimals
2021-12-24 20:46:43 +01:00
Jeffrey Finkelstein
2aebfc9f8d
comm: return UResult from uumain() function
2021-12-24 13:40:18 -05:00
Jeffrey Finkelstein
aacbfe681f
chroot: return UResult from uumain() function
2021-12-24 13:26:48 -05:00
Jeffrey Finkelstein
6f7ce781cb
cksum: return UResult from uumain() function
2021-12-24 13:24:09 -05:00
Sylvestre Ledru
eb87ddbaf7
Merge pull request #2783 from jfinkels/tac-uresult
...
tac: return UResult from uumain() function
2021-12-24 10:36:12 +01:00
Jeffrey Finkelstein
294bde8e08
seq: correct width for certain negative decimals
...
Fix a bug in which a negative decimal input would not be displayed with
the correct width in the output. Before this commit, the output was
incorrectly
$ seq -w -.1 .1 .11
-0.1
0.0
0.1
After this commit, the output is correctly
$ seq -w -.1 .1 .11
-0.1
00.0
00.1
The code was failing to take into account that the input decimal "-.1"
needs to be displayed with a leading zero, like "-0.1".
2021-12-23 20:37:29 -05:00
Jeffrey Finkelstein
b8c572b32d
tac: return UResult from uumain() function
2021-12-23 20:30:51 -05:00
Sylvestre Ledru
5c0adb26a5
Merge pull request #2778 from refi64/mountinfo-optional
...
uucore::fsext: Fix mountinfo parsing w/ multiple optional fields
2021-12-22 18:32:14 +01:00
kimono-koans
fd64e01d92
ls: Reduce binary size of ls by removing regex crate ( #2781 )
2021-12-22 18:31:45 +01:00
Ryan Gonzalez
23c0734a62
uucore::fsext: Fix mountinfo parsing w/ multiple optional fields
...
proc(5) mentions the following for the fields section and hyphen:
> (7) optional fields: zero or more fields of the form "tag[:value]";
> see below.
> (8) separator: the end of the optional fields is marked by a single
> hyphen.
IOW, there may actually be multiple optional fields, not just one, in
which case the previously hardcoded indexes for the filesystem type and
device name are now incorrect. Now, the filesystem type and device name
are parsed relative to the hypen's location, ensuring that they will be
correct regardless of the number of optional fields.
Signed-off-by: Ryan Gonzalez <ryan.gonzalez@collabora.com>
2021-12-20 08:46:22 -06:00
Sylvestre Ledru
f2f582aa14
Merge pull request #2782 from sylvestre/test_1665
...
cp: add a unit test for issue 1665
2021-12-19 22:49:42 +01:00
Sylvestre Ledru
59da0d8cd6
cp: add a unit test for issue 1665
2021-12-19 18:19:48 +01:00
Sylvestre Ledru
cf8ace8f09
Merge pull request #2779 from sylvestre/pla
...
bump the platform-info dep
2021-12-18 00:40:21 +01:00
Sylvestre Ledru
a3041843c9
bump the platform-info dep
2021-12-18 00:04:03 +01:00
Sylvestre Ledru
ca705e5ad2
Merge pull request #2772 from jfinkels/more-return-result
...
more: return Ok in main loop
2021-12-16 09:50:36 +01:00
Jeffrey Finkelstein
e88a8e8eb2
more: return Ok in main loop
2021-12-15 20:49:41 -05:00
Sylvestre Ledru
83201ecb35
Merge pull request #2765 from ybc37/fix/idempotent-build-gnu
...
Fix idempotence of `utils/build-gnu.sh`
2021-12-15 23:40:55 +01:00
Sylvestre Ledru
5e2dd9d0bc
Merge pull request #2767 from E3uka/more_uresult
...
more: use UResult
2021-12-15 23:40:38 +01:00
Sylvestre Ledru
5bcc53ecde
Merge pull request #2771 from E3uka/next_prev
...
more: add next-line and prev-line command.
2021-12-15 23:39:09 +01:00
electricboogie
a1960f5da0
Fix cp bug: pre-write permission change ( #2769 )
2021-12-15 22:18:02 +01:00
Ebuka Agbanyim
d2095edf6c
more: add next-line and prev-line command.
2021-12-14 19:32:38 +00:00
Sylvestre Ledru
d5463ea5b9
Merge pull request #2770 from sylvestre/unbreak-windows-ci
...
Try to unbreak the code coverage CI.
2021-12-14 11:59:21 +01:00
Sylvestre Ledru
52d2fe1d28
Try to unbreak the code coverage CI.
...
For some reasons, on windows, test_compress_fail is failing with a different
error. So, don't check the output on windows
2021-12-14 09:46:28 +01:00
Ebuka Agbanyim
0bf2266ef0
more: use UResult
2021-12-13 00:37:34 +00:00