New Fluxzy 2.0 just shipped. Electron is out, Tauri is in. Fresh design, 68% smaller install. Learn more

Command pack

The pack command allows you to export a fluxzy dump directory to a specific archive format.

Options

Description:
  Export a fluxzy result directory to a specific archive format

Usage:
  fluxzy pack <input-directory> <output-file> [options]

Arguments:
  <input-directory>  a fluxzy folder result to export
  <output-file>      a fluxzy folder result to export

Options:
  f, --format <f>  The output file format among fluxzy, har and saz
  -?, -h, --help   Show help and usage information

Pack a fluxzy dump directory into a fluxzy archive

The output format is inferred from the extension of the output file. Use .fxzy for fluxzy archive.

fluxzy pack /path/to/dump-folder /path/to/file.fxzy

Pack a fluxzy dump directory into an HTTP archive file (HAR)

Use .har extension for HTTP Archive format.

fluxzy pack /path/to/dump-folder /path/to/file.har

Pack a fluxzy dump directory into a SAZ file

Use .saz extension for SAZ format (Fiddler archive format).

fluxzy pack /path/to/dump-folder /path/to/file.saz

Specify format explicitly

Alternatively, you can use the --format option to specify the output format without inferring it from the output file extension. Possible values are fluxzy, har, and saz.

fluxzy pack /path/to/dump-folder /path/to/output --format har

Unlike the fluxzy archive, the HTTP archive (HAR) and SAZ formats do not support storing captured PCAP files.

ESC