This commit is contained in:
Klaatu 2016-09-01 22:28:28 +12:00
parent 76fa9cfc23
commit f1253031f2
1 changed files with 11 additions and 0 deletions

11
cheat/cheatsheets/bzip2 Normal file
View 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