blob: 1d1bc84b29c7e03384913c21b3e06dc17f1458e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
set -e
# @describe Get the current time.
# @env LLM_OUTPUT=/dev/stdout The output path
main() {
date >> "$LLM_OUTPUT"
}
eval "$(argc --argc-eval "$0" "$@")"
|