Richard Owlett <[email protected]> wrote:
> Chris Davies wrote:
>>      ar -p "$PACKAGE" data.tar.gz | tar xzvCf / - ./usr/share/man

> I'll have to sit down with man pages a figure out why that 
> does what you say.

ar : archiver. It works on the "$PACKAGE" archive. The -p flag writes
the named member(s) of the archive to stdout

tar : "tape" archiver. The various flags take "the next" argument from
the command line as appropriate:
    x : extract file(s) named on the command line after other flags have
        been processed, or extract everything if no files are specified
    z : input is compressed (gzip)
    v : verbose output
    C / : change directory to / before extracting files
    f - : read from stdin ("-" could be a filename, to read from that file)

Chris


-- 
To UNSUBSCRIBE, email to [email protected] 
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to