Archives for: "May 2007"

tar and gzip on unix

May 10th, 2007
Being primarily a Linux user, I'm used to the GNU tar program with gzip included. UNIX tar (at least HP-UX) doesn't have gzip included as part of the tar option set. Here's how to do a tar+gzip as a single command: tar cvf - . | gzip > ~/backup-… more »