------------------------- Week 14 Notes for DAT2330 ------------------------- -Ian! D. Allen - idallen@idallen.ca Review: exec out.gz $ cat foo bar | bzip2 >out.bz2 File suffix names: .gz - gzip .bz2 - bzip2 .Z - compress (an old Unix format) The de-compression commands expect the proper suffix on file names. The gzip command can de-compress .Z format files. .tar - plain tar archive (no compression) .tar.gz - tar archive compressed with gzip .tgz - same as .tar.gz The tar command does not care about the suffix on a file name. You can use any name you want. New commands: tar gzip gunzip bzip2 bunzip2