Hello World
Create a file called hello.yml with following content:
pipeline:
exec:
command: 'echo'
args:
- 'Hello World'
options:
verbose: trueStart the flow with fbl:
fbl hello.ymlYou 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 secondLast updated
Was this helpful?