mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
Merge pull request #5696 from dvalere/my-conts
src: Fixing typos in signatures for the argument parser
This commit is contained in:
commit
f8f82774c3
13 changed files with 14 additions and 11 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
```
|
```
|
||||||
nohup COMMAND [ARG]...
|
nohup COMMAND [ARG]...
|
||||||
nohup FLAG
|
nohup OPTION
|
||||||
```
|
```
|
||||||
|
|
||||||
Run COMMAND ignoring hangup signals.
|
Run COMMAND ignoring hangup signals.
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# uniq
|
# uniq
|
||||||
|
|
||||||
```
|
```
|
||||||
uniq [OPTION]... [INPUT [OUTPUT]]...
|
uniq [OPTION]... [INPUT [OUTPUT]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Report or omit repeated lines.
|
Report or omit repeated lines.
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
```
|
```
|
||||||
unlink [FILE]
|
unlink [FILE]
|
||||||
|
unlink OPTION
|
||||||
```
|
```
|
||||||
|
|
||||||
Unlink the file at `FILE`.
|
Unlink the file at `FILE`.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue