Possible Duplicate: gzipping up a set of directories and creating a tar compressed file
This post describes how t
@amitchhajer 's post works for GNU tar. If someone finds this post and needs it to work on a NON GNU system, they can do this:
GNU
tar cvf - folderToCompress | gzip > compressFileName
To expand the archive:
zcat compressFileName | tar xvf -