Tar/Zip Files & directories

by Melvin Ram

When on a linux server, it’s handy to know how to zip-up or unzip tar files. Here’s how you do it:

Tar Up

tar cvzf file.tar directory

UnTar (Unzip)

tar xzvf file.tar

Reference: http://www.cs.duke.edu/~ola/courses/programming/tar.html

Leave a Comment