blob: 7cde98cb368c70f1bac2192c9a78ed8b35a4bb33 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# shellcheck shell=bash
# arguments of the form X="$I" are parsed as parameters X of type string
msg="$1"
dflt="${2:-default value}"
# WARN; Cannot download dependency modules from internet during sandbox testing!
# the last line of the stdout is the return value
# unless you write json to './result.json' or a string to './result.out'
echo "Hello $msg"
|