Strand Blobs Cli
Usage
Using the `strand-blobs` CLI to operate blob storage from the shell — chunk inspection, repair, and metrics.
Purpose
CLI for operating strand blob storage and blob workflows.
This page follows the real source shape for Strand Blobs Cli and explains the workflow a developer is likely to use first.
Developer workflow
Start from the smallest constructor or builder, perform one meaningful operation, inspect the returned state, then add the relevant policy, storage, or network integration. The examples below should be expanded whenever the crate API changes.
Primary types to know
- No public items were detected by the source scan. This page should be updated when the crate exposes new items.
Example shape
# strand-blobs-cli is invoked from a shell.
# Put a file:
strand-blobs put /path/to/file.bin --store /var/lib/blobs
# Get a file back by id:
strand-blobs get <blob-id> --store /var/lib/blobs --out /tmp/file.bin
# List blobs:
strand-blobs list --store /var/lib/blobs --limit 100