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
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
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
> 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!
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
5 matches
Mail list logo