HomeTutorials › Pipelines & Events
Pipelines & Events

Loading & Running Pipelines (##pipe)

#086 0:17 Part of the Rysh video series

Define a pipeline in a file, load it, run it -- ##pipe drives the whole lifecycle.

Loading & Running Pipelines (##pipe) — 0:17 walkthrough

What you'll see

  1. Launch rysh and double-Escape into rysh mode.
  2. Run ##pipe help to see all pipeline subcommands.
  3. ##pipe load build.pipeline reads the file from .rysh/pipelines.
  4. ##pipe list shows loaded pipelines; ##pipe show build prints its details.
  5. ##pipe run build executes it (defaults to the first loaded pipeline if no name).
  6. ##pipe status reports phase-by-phase progress; ##pipe clear wipes output.

Commands shown

rysh
##pipe help
##pipe load build.pipeline
##pipe list
##pipe show build
##pipe run build
##pipe status
##pipe clear

Keys used

EnterEscape

Transcript

0:00Define a pipeline in a file, load it, run it -- ##pipe drives the whole lifecycle.

0:03Start rysh. Pipelines live as files under .rysh/pipelines in your project.

0:08Double-Escape into rysh mode. ##pipe help lists everything the pipeline command can do.

0:45And ##pipe clear wipes the pipeline output when you're done. Load, run, status, clear -- the full loop.

Key takeaway
##pipe loads pipelines from .rysh/pipelines, then list, show, run, status, and clear manage their full lifecycle.