linux
linux tar simple example
Submitted by benl on Thu, 05/20/2010 - 08:35
Related Terms :
OK, this is really simple, but I'm always forgetting the exact syntax, and man pages are overkill for this.
Tar a directory "dir" into a gzip'd tarball:
tar -zcvf dir.tar.gz dirAnd extract it:
tar -zxvf dir.tar.gz