"Miguel G." <[EMAIL PROTECTED]> writes:
> I'm kind of desperated as a lot o (my) work is in this.
>
> I'was woking with some html files, backed up with
> gzip -c * > backup.gz
>
> I need now to get files back from there and cannot figure out how, could
> anyone please help me ?
>From the gzip man page:
If you wish to create a single archive file with multiple
members so that members can later be extracted indepen-
dently, use an archiver such as tar or zip. GNU tar sup-
ports the -z option to invoke gzip transparently. gzip is
designed as a complement to tar, not as a replacement.
The good news is, that while I don't know how you could get the individual files out,
all your data is there and if it is html then it will be easy to find the file
boundries.
You probably wanted to do something like
tar -cz * > backup.tar.gz
and
tar -xzf backup.tar.gz
rw2
--
Logically, life must be possible in the Universe.
Else you would not be here.
Assuming you are.