2025-11-04 11:46:49 +00:00
|
|
|
# CLI Usage
|
|
|
|
|
|
|
|
|
|
`borg` is a command-line tool for collecting repositories, websites, and PWAs into portable data artifacts (DataNodes) or Terminal Isolation Matrices.
|
|
|
|
|
|
|
|
|
|
Use `borg --help` and `borg <command> --help` to see all flags.
|
|
|
|
|
|
|
|
|
|
## Top-level
|
|
|
|
|
|
|
|
|
|
- `borg --help`
|
|
|
|
|
- `borg --version`
|
|
|
|
|
|
|
|
|
|
## Commands
|
|
|
|
|
|
|
|
|
|
### collect
|
|
|
|
|
|
|
|
|
|
Collect and package inputs.
|
|
|
|
|
|
|
|
|
|
Subcommands:
|
2025-11-24 23:58:50 +00:00
|
|
|
- `borg collect github repo <repo-url> [--output <file>] [--format datanode|tim|trix] [--compression none|gz|xz]`
|
|
|
|
|
- `borg collect github release <release-url> [--output <file>]`
|
|
|
|
|
- `borg collect github repos <org-or-user> [--output <file>] [--format ...] [--compression ...]`
|
2025-11-04 11:46:49 +00:00
|
|
|
- `borg collect website <url> [--depth N] [--output <file>] [--format ...] [--compression ...]`
|
|
|
|
|
- `borg collect pwa --uri <url> [--output <file>] [--format ...] [--compression ...]`
|
|
|
|
|
|
|
|
|
|
Examples:
|
2025-11-24 23:58:50 +00:00
|
|
|
- `borg collect github repo https://github.com/Snider/Borg --output borg.dat`
|
|
|
|
|
- `borg collect website https://example.com --depth 1 --output site.dat`
|
|
|
|
|
- `borg collect pwa --uri https://squoosh.app --output squoosh.dat`
|
|
|
|
|
|
|
|
|
|
### all
|
|
|
|
|
|
|
|
|
|
Collect all public repositories from a GitHub user or organization.
|
|
|
|
|
|
|
|
|
|
- `borg all <url> [--output <file>]`
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
- `borg all https://github.com/Snider --output snider.dat`
|
|
|
|
|
|
|
|
|
|
### compile
|
|
|
|
|
|
|
|
|
|
Compile a Borgfile into a Terminal Isolation Matrix (TIM).
|
|
|
|
|
|
|
|
|
|
- `borg compile [--file <Borgfile>] [--output <file>]`
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
- `borg compile --file Borgfile --output a.tim`
|
|
|
|
|
|
|
|
|
|
### run
|
|
|
|
|
|
|
|
|
|
Execute a Terminal Isolation Matrix (TIM).
|
|
|
|
|
|
|
|
|
|
- `borg run <tim-file>`
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
- `borg run a.tim`
|
2025-11-04 11:46:49 +00:00
|
|
|
|
|
|
|
|
### serve
|
|
|
|
|
|
2025-11-24 23:58:50 +00:00
|
|
|
Serve a packaged DataNode or TIM via a static file server.
|
2025-11-04 11:46:49 +00:00
|
|
|
|
2025-11-24 23:58:50 +00:00
|
|
|
- `borg serve <file> [--port 8080]`
|
2025-11-04 11:46:49 +00:00
|
|
|
|
|
|
|
|
Examples:
|
2025-11-24 23:58:50 +00:00
|
|
|
- `borg serve squoosh.dat --port 8888`
|
|
|
|
|
- `borg serve borg.tim --port 9999`
|
|
|
|
|
|
|
|
|
|
### decode
|
|
|
|
|
|
|
|
|
|
Decode a `.trix` or `.tim` file back into a DataNode (`.dat`).
|
|
|
|
|
|
|
|
|
|
- `borg decode <file> [--output <file>] [--password <password>]`
|
|
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
- `borg decode borg.trix --output borg.dat --password "secret"`
|
|
|
|
|
- `borg decode borg.tim --output borg.dat --i-am-in-isolation`
|
2025-11-04 11:46:49 +00:00
|
|
|
|
|
|
|
|
## Compression
|
|
|
|
|
|
|
|
|
|
All collect commands accept `--compression` with values:
|
2025-11-24 23:58:50 +00:00
|
|
|
- `none` (default)
|
|
|
|
|
- `gz`
|
|
|
|
|
- `xz`
|
2025-11-04 11:46:49 +00:00
|
|
|
|
|
|
|
|
Output filenames gain the appropriate extension automatically.
|
|
|
|
|
|
2025-11-24 23:58:50 +00:00
|
|
|
## Formats
|
|
|
|
|
|
|
|
|
|
Borg supports three output formats via the `--format` flag:
|
2025-11-04 11:46:49 +00:00
|
|
|
|
2025-11-24 23:58:50 +00:00
|
|
|
- `datanode`: A simple tarball containing the collected resources. (Default)
|
|
|
|
|
- `tim`: Terminal Isolation Matrix, a runc-compatible bundle.
|
|
|
|
|
- `trix`: Encrypted and structured file format.
|