generated from coop-cloud/example
18 lines
159 B
Bash
18 lines
159 B
Bash
#!/usr/bin/env bash
|
|
|
|
test_cmd(){
|
|
echo "baz"
|
|
}
|
|
|
|
test_cmd_arg(){
|
|
echo "$1"
|
|
}
|
|
|
|
test_cmd_args(){
|
|
echo "$1 $2"
|
|
}
|
|
|
|
test_cmd_export(){
|
|
export INNER_FOO=bar
|
|
}
|