talks/working-with-workspace/code/environment-variables.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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"