Files
coyote-config-template/functions/tools/greet.sh
T
2026-05-22 17:07:12 -06:00

13 lines
310 B
Bash

#!/usr/bin/env bash
set -e
# @describe Greet a person by name. Example bash tool shipped with loki-config-template.
# @option --name! Name of the person to greet.
# @env LLM_OUTPUT=/dev/stdout The output path
# shellcheck disable=SC2154
main() {
printf 'Hello, %s!\n' "${argc_name}" >> "$LLM_OUTPUT"
}