Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!cs.utexas.edu!uunet!peregrine!ccicpg!cci632!rit!tropix!moscom!ur-valhalla!uhura.cc.rochester.edu!rochester!rutgers!lilink!mikej From: mikej@lilink.UUCP (Michael R. Johnston) Newsgroups: comp.unix.questions Subject: Re: tar help Keywords: tar, SUN unix 4.2 Message-ID: <762@lilink.UUCP> Date: 8 Aug 89 00:01:16 GMT References: <1731@cmx.npac.syr.edu> Organization: LILINK Public Xenix, Long Island, New York Lines: 14 gefuchs@goedel.uucp (Gill E. Fuchs) writes: >suppose i want to tar an entire accound into a tar file named >GUGU.tar >then i type (at the ~ directory) > tar cvf GUGU.tar . >but after sometime tar tars GUGU.tar recorsively upon itself, I have had this problem as well. The solution is of course that you are saying "Tar every file in this directory". GUGO.tar happens to be one of them. To get around this I usually do like so: tar cvf /tmp/GUGO.tar . And that takes care of the problem.