presentations/working-with-workspace/slides/code/environment-variables.txt
2025-10-02 23:01:51 +01:00

7 lines
153 B
Text

command('say-hello <name>'):
env:
MESSAGE: = @('message')
NAME: = input.argument('name')
exec: |
#!bash|=
echo "$MESSAGE from $NAME"