Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!samsung!sol.ctr.columbia.edu!cica!iuvax!uceng!mdame From: mdame@uceng.UC.EDU (Flyck) Newsgroups: comp.unix.wizards Subject: Re: How do I un-tar something? Message-ID: <4644@uceng.UC.EDU> Date: 4 May 90 13:40:06 GMT References: <788@unicorn.WWU.EDU> Organization: What's that? Lines: 20 In article <788@unicorn.WWU.EDU> n8743196@unicorn.WWU.EDU (jeff wandling) writes: >I saw a poster on this and tried it but I still haven't been sucessful. >I'd like to un-tar a file. Just how do I do it? Try tar -xvf The -x tells tar extract information from the tar file, the -v will echo the exctractions to the screen so you know it's working, and the -f signals that the is where to extract from. Make sure you uncompress it first if neccessary (a compressed file has a .Z on the end). Note that the -v switch is optional. I like it becuase it shows that it's doing something. If the file is compressed you can also untar it with out uncompressing by using zcat | tar -xvf - This saves disk space as you don't have the uncompressed tar file laying around. -mark