Update cheatsheets

This commit is contained in:
ivuorinen
2025-09-29 00:19:50 +00:00
parent 370df82bda
commit 883e910225
10 changed files with 23 additions and 19 deletions

View File

@@ -23,3 +23,7 @@ source: https://github.com/tldr-pages/tldr.git
- Split a file with at most 512 bytes in each split without breaking lines:
`split {{[-C|--line-bytes]}} 512 {{path/to/file}}`
- Split into multiple files from `stdin`:
`gzip {{[-cd|--stdout --decompress]}} {{path/to/compressed_file.gz}} | split {{[-l|--lines]}} 1000 - {{path/to/output}}`