FBL
  • About FBL
  • Flows
    • Hello World
    • Templates
    • Template Functions
    • Metadata Fields
  • Plugins
    • Flow Control
    • Context State
    • Execute (Shell & JavaScript)
    • File System
    • CLI Prompts
    • Execution Reporters
    • Common Options
  • Anti-Patterns & Pitfalls
    • Sequence Action Handler - "shareParameters" option
  • Packages
  • Glossary
Powered by GitBook
On this page

Was this helpful?

  1. Flows

Hello World

Create a file called hello.yml with following content:

pipeline:
  exec:
    command: 'echo'
    args:
      - 'Hello World'
    options:
      verbose: true

Start the flow with fbl:

fbl hello.yml

You should now similar output in your console:

 -> Reading flow file: hello.yml
 -> [1] [exec] Processing.
 -> [1] [exec] stdout: Hello World

 <- [1] [exec] Completed successfully withing 0.037 second
PreviousFlowsNextTemplates

Last updated 6 years ago

Was this helpful?