bffextract

Crates.iobffextract
lib.rsbffextract
version0.7.1
sourcesrc
created_at2024-01-26 08:37:49.624705
updated_at2024-08-05 14:13:23.1246
descriptionExtract content of BFF file (AIX Backup file format)
homepage
repositoryhttps://github.com/ponchofiesta/bffextract-rs
max_upload_size
id1115321
size24,462
Michael Richter (ponchofiesta)

documentation

README

BFFextract

Simple Rust program to extract AIX BFF files.

Install

Cargo

To compile it from source you can just install it using cargo install.

cargo install bffextract

Binary download

Each release is available in compiled binary from Github. Linux build is using MUSL toolchain to make it work on older libc versions (e.g. CentOS 7) too.

https://github.com/ponchofiesta/bffextract-rs/releases

Usage

Extract content of BFF file (AIX Backup file format)

Usage: bffextract.exe [OPTIONS] <FILENAME> [FILE_LIST]...

Arguments:
  <FILENAME>      Path to BFF file.
  [FILE_LIST]...  Extract specific source file(s) and folders recursively only.

Options:
  -C, --chdir <CHDIR>            Extract to directory. [default: .]
  -A, --attributes <ATTRIBUTES>  Restore only specified file attributes.
                                 Possible values: p = permissions (unix only)
                                                  o = owners (unix only)
                                                  t = timestamps
                                  [default: t]
  -t, --list                     List content of BFF archive.
  -v, --verbose                  Displays details while extracting.
  -n, --numeric                  List numeric user and group IDs.
  -h, --help                     Print help
  -V, --version                  Print version

Limitations

  • Checksum is not verified (archive and content files).
  • Symlinks are unsupported. They are not part of the BFF file format, but of the liblpp.a file which is part of a install fileset.
  • Bad file format may be ignored in some cases.

Credits

Based on:

Commit count: 57

cargo fmt