mirror of
https://github.com/cheat/cheat.git
synced 2025-09-06 12:03:00 +02:00
bzip2
This commit is contained in:
11
cheat/cheatsheets/bzip2
Normal file
11
cheat/cheatsheets/bzip2
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# compress foo -> foo.bz2
|
||||||
|
bzip2 -z foo
|
||||||
|
|
||||||
|
# decompress foo.bz2 -> foo
|
||||||
|
bzip2 -d foo.bz2
|
||||||
|
|
||||||
|
# compress foo to stdout
|
||||||
|
bzip2 -zc foo > foo.bz2
|
||||||
|
|
||||||
|
# decompress foo.bz2 to stdout
|
||||||
|
bzip2 -dc foo.bz2
|
Reference in New Issue
Block a user