fabro/graph.fabro
Fabro bc7ef8abca init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-03-19 09:28:29 -04:00

12 lines
372 B
Text

digraph CommandPipeline {
graph [goal="Run two commands in sequence"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
step1 [label="Step 1", shape=parallelogram, script="echo hello-from-step1"]
step2 [label="Step 2", shape=parallelogram, script="echo hello-from-step2"]
start -> step1 -> step2 -> exit
}