presentations/working-with-workspace/code/environment-variables.txt
Oliver Davies ba2bf10bea Automated commit
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-10-02 12:04:23 +01:00

7 lines
153 B
Text

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