(Note: this is retyped from an old handout that Dr. Kent gave to some of his students once upon a time. I'm presenting it here because it was a lot easier to read than the man pages for tar, compress, gzip, uncompress, or gunzip.)
_core_file
executables and .o files for which you have the source code
old mail
gzip bigfile.c biggerfile.c
creates compressed versions with .gz extension bigfile.c.gzgunzip bigfile.c.gz will uncompress the file later
tar cvf jdir.tar jdir
(where jdir is that name of a directory)gzip jdir.tar
(creates jdir.tar.gz)/bin/rm -r jdir
(deletes directory)To recreate later:
gunzip jdir.tar.gz
(uncompresses)tar xvf jdir.tar
(untars and recreates directory)