logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

bup-cat-file - extract archive content (low-level)

Authors

       Rob Browning rlb@defaultvalue.org

Bup 0.33.7                                         2025-01-11                                    bup-cat-file(1)

Bup

       Part of the bup(1) suite.

Description

       bup  cat-file extracts content associated with path from the archive and dumps it to standard output.  If
       nothing special is requested, the actual data contained by path (which must be a regular  file)  will  be
       dumped.

Examples

              # Retrieve the content of somefile.
              $ bup cat-file /foo/latest/somefile > somefile-content

              # Examine the metadata associated with something.
              $ bup cat-file --meta /foo/latest/something | bup meta -tvvf -

              # Examine the metadata for somedir, including the items it contains.
              $ bup cat-file --bupm /foo/latest/somedir | bup meta -tvvf -

Name

       bup-cat-file - extract archive content (low-level)

Options

       --meta retrieve  the  metadata  entry associated with path.  Note that currently this does not return the
              raw bytes for the entry recorded in the relevant .bupm in the archive, but rather  a  decoded  and
              then  re-encoded version.  When that matters, it should be possible (though awkward) to use --bupm
              on the parent directory and then find the relevant entry in the output.

       --bupm retrieve the .bupm file associated with path, which must be a directory.

See Also

bup-join(1), bup-meta(1)

Synopsis

       bup cat-file [--meta|--bupm] <path>

See Also