Update cheatsheets

This commit is contained in:
ivuorinen
2024-06-27 00:14:26 +00:00
parent e258e7ab99
commit 3b52a5cc92
7 changed files with 13 additions and 13 deletions

View File

@@ -18,13 +18,13 @@ source: https://github.com/tldr-pages/tldr.git
- Merge two files side by side, each in its column, using TAB as delimiter:
`paste {{file1}} {{file2}}`
`paste {{path/to/file1}} {{path/to/file2}}`
- Merge two files side by side, each in its column, using the specified delimiter:
`paste -d {{delimiter}} {{file1}} {{file2}}`
`paste -d {{delimiter}} {{path/to/file1}} {{path/to/file2}}`
- Merge two files, with lines added alternatively:
`paste -d '
' {{file1}} {{file2}}`
' {{path/to/file1}} {{path/to/file2}}`