Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-27 00:18:38 +00:00
parent 5871f35fe8
commit 9fe6559a97
123 changed files with 660 additions and 357 deletions

View File

@@ -10,20 +10,20 @@ source: https://github.com/tldr-pages/tldr.git
- Set a size of 10 GB to an existing file, or create a new file with the specified size:
`truncate --size 10G {{path/to/file}}`
`truncate {{[-s|--size]}} 10G {{path/to/file}}`
- Extend the file size by 50 MiB, fill with holes (which reads as zero bytes):
`truncate --size +50M {{path/to/file}}`
`truncate {{[-s|--size]}} +50M {{path/to/file}}`
- Shrink the file by 2 GiB, by removing data from the end of file:
`truncate --size -2G {{path/to/file}}`
`truncate {{[-s|--size]}} -2G {{path/to/file}}`
- Empty the file's content:
`truncate --size 0 {{path/to/file}}`
`truncate {{[-s|--size]}} 0 {{path/to/file}}`
- Empty the file's content, but do not create the file if it does not exist:
`truncate --no-create --size 0 {{path/to/file}}`
`truncate {{[-c|--no-create]}} {{[-s|--size]}} 0 {{path/to/file}}`