mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +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
342 B
Markdown
16 lines
342 B
Markdown
# bzip2
|
|
|
|
> Compressore di file a blocchi ordinati.
|
|
> Maggiori informazioni: <https://manned.org/bzip2>.
|
|
|
|
- Comprimi un file:
|
|
|
|
`bzip2 {{percorso/del/file}}`
|
|
|
|
- Decomprimi un file:
|
|
|
|
`bzip2 -d {{percorso/del/file_compresso.bz2}}`
|
|
|
|
- Decomprimi un file e mostrane il contenuto su standard output:
|
|
|
|
`bzip2 -dc {{percorso/del/file_compresso.bz2}}`
|