|
To extract make a tempdir to be safe, cd into it and then "zcat /path/to/name.cpio.gz | cpio -idv".
To compress (asserting you're in the tempdir) "find ../tempdir | cpio -o | gzip > /path/to/newname.cpio.gz"
If you need full path names or none play with the "find ../tempdir" path part or look in cpio's man page.
|