| Grouping/Compression Command | Resulting File | Expanding Command |
| tar cvf file.tar directory/ | file.tar | tar xvf file.tar |
| tar cvfz file.tar.gz directory/ | file.tar.gz | tar xvf file.tar.gz |
| zip file.zip directory/ | file.zip | unzip file.zip |
| bzip2 file.tar | file.tar.bz2 | bunzip2 file.tar.bz2 |
| compress file | file.Z | uncompress file.Z |
This table should help you with compression and file archives.