talks/Working with Workspace/code/environment-variables.txt

8 lines
153 B
Plaintext
Raw Normal View History

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