11 lines
161 B
Bash
11 lines
161 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
fns=( hello )
|
||
|
|
|
||
|
|
hello() {
|
||
|
|
[ "$1" == help ] && echo -n "Say \"hello.\"" && return 0
|
||
|
|
echo hello.
|
||
|
|
}
|
||
|
|
|
||
|
|
. "$(dirname "$0")/../dynamic_main.bash"
|