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

join: fixed parameter

basenc: fixed parameter
cut: fixed parameter
mkdir: fixed parameter
nohup: fixed parameter
pr: fixed parameter
printenv: fixed parameter
printf: added parameters
runcon: fixed typo
shuf: fixed typo
sum: fixed typo
uniq: fixed parameter
unlink: fixed parameter
This commit is contained in:
Darius 2023-12-23 14:20:45 +09:00 committed by Sylvestre Ledru
parent e26f4c7f36
commit edbb7d5b02
13 changed files with 14 additions and 11 deletions

View file

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

View file

@ -3,7 +3,7 @@
<!-- 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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,7 +1,7 @@
# 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.

View file

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

View file

@ -2,7 +2,7 @@
```
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.

View file

@ -3,7 +3,7 @@
```
shuf [OPTION]... [FILE]
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.

View file

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

View file

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

View file

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