Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -2,22 +2,22 @@
> Merge lines of files.
- join all the lines into a single line, using TAB as delimiter.
- Join all the lines into a single line, using TAB as delimiter:
`paste -s {{file}}`
- join all the lines into a single line, using the specified delimiter.
- Join all the lines into a single line, using the specified delimiter:
`paste -s -d {{delimiter}} {{file}}`
- merge two files side by side, each in its column, using TAB as delimiter.
- Merge two files side by side, each in its column, using TAB as delimiter:
`paste {{file1}} {{file2}}`
- merge two files side by side, each in its column, using the specified delimiter.
- Merge two files side by side, each in its column, using the specified delimiter:
`paste -d {{delimiter}} {{file1}} {{file2}}`
- merge two files, with lines added alternatively.
- Merge two files, with lines added alternatively:
`paste -d '\n' {{file1}} {{file2}}`