-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Some docs issues #5692
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
hey i want to work on this, it would be great if you assign this to me! |
I've made the list into checkmarks to keep track of all the pages that are correct now. |
Hi @tertsdiepraam! I would like to work on the remaining issues in the docs. |
@zaira-bibi feel free to! You can mention me in the PRs that you make to ensure I'll see them. |
Thanks! I went through the checklist and the repo and it seems like all the issues have been fixed. Kindly let me know if I'm wrong. |
Went through the list and found inconsistencies for unlink and runcon. runcon uutils:
runcon requires a context command to function:
unlink uutils:
unlink requires a file to unlink
Every other tool matches. I don't have GNU hashsum to check, but it does have a usage string. |
Fixed runcon usage string to indicate a context command to function. Fixed unlink usage doc to indicate a file is required.
Fix runcon usage string to indicate a context command to function. Fix unlink usage doc to indicate a file is required.
Fix runcon usage string to indicate a context command to function. Fix unlink usage doc to indicate a file is required.
That's right, because it doesn't exist :)
This is still an issue for everything that uses hashsum under the hood like The |
Hi
Is this still valid? #!/bin/bash
for i in md5sum sha1sum sha224sum sha256sum sha384sum sha512sum sha3sum sha3-224sum sha3-256sum sha3-384sum sha3-512sum shake128sum shake256sum b2sum b3sum; do
cargo run $i -h 2>&1 | grep Usage
done
And also
cargo run [ --help
This issue is closeable no ? |
I don't think it was. If I recall when I checked, all the *sums had usage strings. All it needed was a minor doc correction to require But I note (contrary to your output) that |
It still doesn't work online I think: https://uutils.github.io/coreutils/docs/utils/sha256sum.html (Unless that has been fixed since the last release and I missed that) |
Hi With #7936 Usage: target/debug/coreutils md5sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha1sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha224sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha256sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha384sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha512sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha3sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha3-224sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha3-256sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha3-384sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils sha3-512sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils shake128sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils shake256sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils b2sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils b3sum [OPTIONS]... [FILE]...
Usage: target/debug/coreutils hashsum --<digest> [OPTIONS]... [FILE]... |
Uh oh!
There was an error while loading. Please reload this page.
I'm going through all signatures for the argument parser. I found some issues in the docs:
join
should bejoin [OPTION]... FILE1 FILE2
cut
should becut OPTION... [FILE]...
mkdir
should bemkdir [OPTION]... DIRECTORY...
(for some reason it says[USER]
now 😄 )hashsum
are missing.more
now saysmore [OPTIONS] <FILE>...
which matchesutil-linux
but uses a different syntax than GNU, which would bemore [OPTIONS]... FILE...
nohup FLAG
should benohup OPTION
pr
should bepr [OPTION]... [FILE]...
printenv
should beprintenv [OPTION]... [VARIABLE]...
printf
should have the stringsprintf FORMAT [ARGUMENT]...
andprintf OPTION
basenc
has a"
at the end of the usage string that shouldn't be there.runcon
has";
at the end of the usage string that shouldn't be there.shuf
has;
at the end of the usage string that shouldn't be there.sum
has"
at the end of the usage string that shouldn't be there.test
's usage string should be written with[
instead oftest
.uniq
should beuniq [OPTION]... [INPUT [OUTPUT]]
unlink
should beunlink FILE
andunlink OPTION
vdir
is missing documentationThe text was updated successfully, but these errors were encountered: