Re: Tar for Idiots Question

2000-05-22 Thread Intl. Man of Mystery
On Mon, May 22, 2000 at 06:36:07PM -0700, kmself@ix.netcom.com wrote: > $ ls *.tar.gz | xargs -n 1 tar xzvf Aha. I had close to that, but didn't know enough to use xargs. And, as in horseshoes, nearsies don't count. Thanks. -- Bob Bernstein | If you don't understand how things are

Re: Tar for Idiots Question

2000-05-22 Thread kmself
On Thu, May 18, 2000 at 11:25:02AM -0400, Bob Bernstein wrote: > I have a slew of tar.gz files in a directory, and I want to unpack them in > that directory. I can't seem to "wildcardize" the usual commands I use to do > this: > > tar xzvf *tar.gz (and) > > gzip -dc *gz | tar xvf - > > both fa

Re: Tar for Idiots Question

2000-05-18 Thread Gary Hennigan
Bob Bernstein <[EMAIL PROTECTED]> writes: > I have a slew of tar.gz files in a directory, and I want to unpack them in > that directory. I can't seem to "wildcardize" the usual commands I use to do > this: > > tar xzvf *tar.gz (and) > > gzip -dc *gz | tar xvf - > > both fail to do it. > > Any

Re: Tar for Idiots Question

2000-05-18 Thread Oswald Buddenhagen
> tar xzvf *tar.gz (and) > for i in *.tag.gz; do tar -xzvf $i; done -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- If Windows is the answer, I want the problems back!

Tar for Idiots Question

2000-05-18 Thread Bob Bernstein
I have a slew of tar.gz files in a directory, and I want to unpack them in that directory. I can't seem to "wildcardize" the usual commands I use to do this: tar xzvf *tar.gz (and) gzip -dc *gz | tar xvf - both fail to do it. Any help, praise, or blame would be welcome at this point! -- Bob