mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-24 19:04:00 +02:00

* pages./: Automatically add alias pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages./: Automatically add links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Fix false positives from script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
16 lines
322 B
Markdown
16 lines
322 B
Markdown
# bzip2
|
|
|
|
> 블록 정렬 파일 압축기.
|
|
> 더 많은 정보: <https://manned.org/bzip2>.
|
|
|
|
- 파일 압축하기:
|
|
|
|
`bzip2 {{경로/압축할_파일명}}`
|
|
|
|
- 파일 압축해제하기:
|
|
|
|
`bzip2 -d {{경로/압축된_.bz2파일}}`
|
|
|
|
- 파일을 표준 출력으로 압축해제:
|
|
|
|
`bzip2 -dc {{경로/압축된_.bz2파일}}`
|