1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Merge pull request #5696 from dvalere/my-conts

src: Fixing typos in signatures for the argument parser
This commit is contained in:
Sylvestre Ledru 2023-12-29 15:08:39 +01:00 committed by GitHub
commit f8f82774c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 14 additions and 11 deletions

View file

@ -1,7 +1,7 @@
# basenc # basenc
``` ```
basenc [OPTION]... [FILE]" basenc [OPTION]... [FILE]
``` ```
Encode/decode data and print to standard output Encode/decode data and print to standard output

View file

@ -3,7 +3,7 @@
<!-- spell-checker:ignore sourcefile sourcefiles --> <!-- spell-checker:ignore sourcefile sourcefiles -->
``` ```
cut [-d|-w] [-s] [-z] [--output-delimiter] ((-f|-b|-c) {{sequence}}) {{sourcefile}}+ cut OPTION... [FILE]...
``` ```
Prints specified byte or field columns from each line of stdin or the input files Prints specified byte or field columns from each line of stdin or the input files

View file

@ -1,7 +1,7 @@
# join # join
``` ```
join [OPTIONS] <FILE1> <FILE2> join [OPTION]... FILE1 FILE2
``` ```
For each pair of input lines with identical join fields, write a line to For each pair of input lines with identical join fields, write a line to

View file

@ -3,7 +3,7 @@
<!-- spell-checker:ignore ugoa --> <!-- spell-checker:ignore ugoa -->
``` ```
mkdir [OPTION]... [USER] mkdir [OPTION]... DIRECTORY...
``` ```
Create the given DIRECTORY(ies) if they do not exist Create the given DIRECTORY(ies) if they do not exist

View file

@ -2,7 +2,7 @@
``` ```
nohup COMMAND [ARG]... nohup COMMAND [ARG]...
nohup FLAG nohup OPTION
``` ```
Run COMMAND ignoring hangup signals. Run COMMAND ignoring hangup signals.

View file

@ -1,7 +1,7 @@
# pr # pr
``` ```
pr [OPTIONS] [files]... pr [OPTION]... [FILE]...
``` ```
Write content of given file or standard input to standard output with pagination filter Write content of given file or standard input to standard output with pagination filter

View file

@ -1,7 +1,7 @@
# printenv # printenv
``` ```
printenv [VARIABLE]... [OPTION]... printenv [OPTION]... [VARIABLE]...
``` ```
Display the values of the specified environment VARIABLE(s), or (with no VARIABLE) display name and value pairs for them all. Display the values of the specified environment VARIABLE(s), or (with no VARIABLE) display name and value pairs for them all.

View file

@ -4,6 +4,8 @@
``` ```
printf FORMATSTRING [ARGUMENT]... printf FORMATSTRING [ARGUMENT]...
printf FORMAT [ARGUMENT]...
printf OPTION
``` ```
Print output based off of the format string and proceeding arguments. Print output based off of the format string and proceeding arguments.

View file

@ -2,7 +2,7 @@
``` ```
runcon [CONTEXT COMMAND [ARG...]] runcon [CONTEXT COMMAND [ARG...]]
runcon [-c] [-u USER] [-r ROLE] [-t TYPE] [-l RANGE] COMMAND [ARG...]"; runcon [-c] [-u USER] [-r ROLE] [-t TYPE] [-l RANGE] COMMAND [ARG...]
``` ```
Run command with specified security context under SELinux enabled systems. Run command with specified security context under SELinux enabled systems.

View file

@ -3,7 +3,7 @@
``` ```
shuf [OPTION]... [FILE] shuf [OPTION]... [FILE]
shuf -e [OPTION]... [ARG]... shuf -e [OPTION]... [ARG]...
shuf -i LO-HI [OPTION]...; shuf -i LO-HI [OPTION]...
``` ```
Shuffle the input by outputting a random permutation of input lines. Shuffle the input by outputting a random permutation of input lines.

View file

@ -1,7 +1,7 @@
# sum # sum
``` ```
sum [OPTION]... [FILE]..." sum [OPTION]... [FILE]...
``` ```
Checksum and count the blocks in a file. Checksum and count the blocks in a file.

View file

@ -1,7 +1,7 @@
# uniq # uniq
``` ```
uniq [OPTION]... [INPUT [OUTPUT]]... uniq [OPTION]... [INPUT [OUTPUT]]
``` ```
Report or omit repeated lines. Report or omit repeated lines.

View file

@ -2,6 +2,7 @@
``` ```
unlink [FILE] unlink [FILE]
unlink OPTION
``` ```
Unlink the file at `FILE`. Unlink the file at `FILE`.