13 lines
196 B
Bash
13 lines
196 B
Bash
#!/bin/bash
|
|
# Template script not meant to be run
|
|
set -euo pipefail
|
|
|
|
source "$HL_LIB"
|
|
|
|
_assert_vars HL_PERSON
|
|
|
|
_ch_001-cat_filled_greeting() {
|
|
cat $(_fill greeting.templ);
|
|
}
|
|
|
|
_run_checkpoints
|