talks/working-with-workspace/code/environment-variables.txt
2021-02-11 17:56:17 +00:00

8 lines
153 B
Plaintext

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