Skip to content

Commit d4e419b

Browse files
authored
paste, nl: enclose TAB in backticks and separate option with an argument (#19784)
1 parent 2f97aff commit d4e419b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pages/common/nl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131

3232
`nl -w {{col_width}} {{path/to/file}}`
3333

34-
- Use a specific string to [s]eparate the line numbers from the lines (TAB by default):
34+
- Use a specific string to [s]eparate the line numbers from the lines (`TAB` by default):
3535

3636
`nl -s {{separator}} {{path/to/file}}`

pages/common/paste.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
> Merge lines of files.
44
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/paste-invocation.html>.
55
6-
- Join all the lines into a single line, using TAB as delimiter:
6+
- Join all the lines into a single line, using `TAB` as delimiter:
77

88
`paste {{[-s|--serial]}} {{path/to/file}}`
99

1010
- Join all the lines into a single line, using the specified delimiter:
1111

12-
`paste {{[-sd|--serial --delimiters]}} {{delimiter}} {{path/to/file}}`
12+
`paste {{[-s|--serial]}} {{[-d|--delimiters]}} {{delimiter}} {{path/to/file}}`
1313

14-
- Merge two files side by side, each in its column, using TAB as delimiter:
14+
- Merge two files side by side, each in its column, using `TAB` as delimiter:
1515

1616
`paste {{path/to/file1}} {{path/to/file2}}`
1717

pages/linux/nl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131

3232
`nl {{[-w|--number-width]}} {{col_width}} {{path/to/file}}`
3333

34-
- Use a specific string to separate the line numbers from the lines (TAB by default):
34+
- Use a specific string to separate the line numbers from the lines (`TAB` by default):
3535

3636
`nl {{[-s|--number-separator]}} {{separator}} {{path/to/file}}`

0 commit comments

Comments
 (0)