xlflow save
Save the workbook held by the managed xlflow session.
Usage
bash
xlflow save --sessionOptions and Arguments
| Option / argument | Description | Default |
|---|---|---|
--session | Save the managed session workbook. | required |
--json | Return save status. | false |
Examples
bash
xlflow save --session
xlflow save --session --jsonNotes
IMPORTANT
Use this after push --session --no-save or edit --session when the live workbook should become the persisted workbook.
JSON Output Example
Successful --json output uses the xlflow envelope plus command-specific fields.
json
{
"status": "ok",
"command": "save",
"session": { "name": "default", "dirty": false }
}