1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.it/common/bzip2.md

17 lines
342 B
Markdown
Raw Normal View History

2019-05-28 17:26:56 +02:00
# bzip2
> Compressore di file a blocchi ordinati.
> Maggiori informazioni: <https://manned.org/bzip2>.
2019-05-28 17:26:56 +02:00
- Comprimi un file:
`bzip2 {{percorso/del/file}}`
2019-05-28 17:26:56 +02:00
- Decomprimi un file:
`bzip2 -d {{percorso/del/file_compresso.bz2}}`
2019-05-28 17:26:56 +02:00
- Decomprimi un file e mostrane il contenuto su standard output:
`bzip2 -dc {{percorso/del/file_compresso.bz2}}`