Skip to content

Commit

Permalink
join: fixed parameter
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dvalere authored and sylvestre committed Dec 26, 2023
1 parent e26f4c7 commit edbb7d5
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/uu/basenc/basenc.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# basenc

```
basenc [OPTION]... [FILE]"
basenc [OPTION]... [FILE]
```

Encode/decode data and print to standard output
Expand Down
2 changes: 1 addition & 1 deletion src/uu/cut/cut.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/uu/join/join.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/uu/mkdir/mkdir.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- spell-checker:ignore ugoa -->

```
mkdir [OPTION]... [USER]
mkdir [OPTION]... DIRECTORY...
```

Create the given DIRECTORY(ies) if they do not exist
Expand Down
2 changes: 1 addition & 1 deletion src/uu/nohup/nohup.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```
nohup COMMAND [ARG]...
nohup FLAG
nohup OPTION
```

Run COMMAND ignoring hangup signals.
Expand Down
2 changes: 1 addition & 1 deletion src/uu/pr/pr.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/uu/printenv/printenv.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 2 additions & 0 deletions src/uu/printf/printf.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

```
printf FORMATSTRING [ARGUMENT]...
printf FORMAT [ARGUMENT]...
printf OPTION
```

Print output based off of the format string and proceeding arguments.
Expand Down
2 changes: 1 addition & 1 deletion src/uu/runcon/runcon.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/uu/shuf/shuf.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/uu/sum/sum.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sum

```
sum [OPTION]... [FILE]..."
sum [OPTION]... [FILE]...
```

Checksum and count the blocks in a file.
Expand Down
2 changes: 1 addition & 1 deletion src/uu/uniq/uniq.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# uniq

```
uniq [OPTION]... [INPUT [OUTPUT]]...
uniq [OPTION]... [INPUT [OUTPUT]]
```

Report or omit repeated lines.
Expand Down
1 change: 1 addition & 0 deletions src/uu/unlink/unlink.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

```
unlink [FILE]
unlink OPTION
```

Unlink the file at `FILE`.

0 comments on commit edbb7d5

Please sign in to comment.