tar -- Tape File Archiver % /usr/sbin/tar - [key] [files] stdin read if no files specified ++++++++++++++++++++++++++++++ tar tvf ~/scr150.tar tar cvf archivename.tar ____________ ____________ ____________ recursiveness is implied txt directories - leave off the slash ++++++++++++++++++++++++++++++ compress: % tar -cf - FOLDER | gzip > FOLDER.tgz ++++++++++++++++++++++++++++++ decompress: % gzcat FOLDER.tgz | tar -xf -