Files
llm-functions/tools/get_current_time.sh

11 lines
138 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# @describe Get the current time.
main() {
date >> "$LLM_OUTPUT"
}
eval "$(argc --argc-eval "$0" "$@")"