Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-29 00:18:23 +00:00
parent a3692d638b
commit 75f807d6af
175 changed files with 1107 additions and 775 deletions

View File

@@ -12,26 +12,26 @@ source: https://github.com/tldr-pages/tldr.git
`bzip2 {{path/to/file_to_compress}}`
- [d]ecompress a file:
- Decompress a file:
`bzip2 -d {{path/to/compressed_file.bz2}}`
`bzip2 {{[-d|--decompress]}} {{path/to/compressed_file.bz2}}`
- [d]ecompress a file to `stdout`:
- Decompress a file to `stdout`:
`bzip2 -dc {{path/to/compressed_file.bz2}}`
`bzip2 {{[-dc|--decompress --stdout]}} {{path/to/compressed_file.bz2}}`
- Test the integrity of each file inside the archive file:
`bzip2 --test {{path/to/compressed_file.bz2}}`
`bzip2 {{[-t|--test]}} {{path/to/compressed_file.bz2}}`
- Show the compression ratio for each file processed with detailed information:
`bzip2 --verbose {{path/to/compressed_files.bz2}}`
`bzip2 {{[-v|--verbose]}} {{path/to/compressed_files.bz2}}`
- Decompress a file overwriting existing files:
`bzip2 --force {{path/to/compressed_file.bz2}}`
`bzip2 {{[-f|--force]}} {{path/to/compressed_file.bz2}}`
- Display help:
`bzip2 -h`
`bzip2 {{[-h|--help]}}`