-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
bunzip2: add page #16896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
bunzip2: add page #16896
Conversation
Co-authored-by: Managor <[email protected]>
The build for this PR failed with the following error(s):
Please fix the error(s) and push again. |
> Decompress a file and save by overwriting the original compressed file. | ||
> See also: `bzip2`, `bzcat`, `bzip2recover`. | ||
> More information: <https://manned.org/bunzip2>. | ||
|
||
- Decompress a file and stream to standard output: | ||
|
||
`bunzip2 {{file.bz2}}` | ||
|
||
- Test integrity of compressed file: | ||
|
||
`bunzip2 {{[-t|--test]}} {{file.bz2}}` | ||
|
||
- Hide all non-essential output messages, errors, and warnings: | ||
|
||
`bunzip2 {{[-q|--quiet]}} {{file.bz2}}` | ||
|
||
- Reduce decompression memory usage by reducing speed: | ||
|
||
`bunzip2 {{[-s|--small]}} {{file.bz2}}` | ||
|
||
- Reduce decompression memory usage by reducing speed: | ||
|
||
`bunzip2 {{[-k|--keep]}} {{file.bz2}}` | ||
|
||
- Override file overwrite and keep the original compressed file: | ||
|
||
`bunzip2 {{[-V|--version]}}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bunzip2
is a symlink to bzip2
and works exactly like bzip2 -d
. This should be an alias page (like unxz
for example).
-d --decompress
Force decompression. bzip2, bunzip2 and bzcat are really the same
program, and the decision about what actions to take is done on
the basis of which name is used.
> Decompress a file and save by overwriting the original compressed file. | |
> See also: `bzip2`, `bzcat`, `bzip2recover`. | |
> More information: <https://manned.org/bunzip2>. | |
- Decompress a file and stream to standard output: | |
`bunzip2 {{file.bz2}}` | |
- Test integrity of compressed file: | |
`bunzip2 {{[-t|--test]}} {{file.bz2}}` | |
- Hide all non-essential output messages, errors, and warnings: | |
`bunzip2 {{[-q|--quiet]}} {{file.bz2}}` | |
- Reduce decompression memory usage by reducing speed: | |
`bunzip2 {{[-s|--small]}} {{file.bz2}}` | |
- Reduce decompression memory usage by reducing speed: | |
`bunzip2 {{[-k|--keep]}} {{file.bz2}}` | |
- Override file overwrite and keep the original compressed file: | |
`bunzip2 {{[-V|--version]}}` | |
> This command is an alias of `bzip2 --decompress`. | |
- View documentation for the original command: | |
`tldr bzip2` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a wrinkle in that it's not a true alias - what you can call changes the function of the command. They can be invoked as an alias would but simply evoking one form only invokes one specific behavior.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How does that differ from unxz
?
common
,linux
,osx
,windows
,sunos
,android
, etc.