11 lines
147 B
Bash
Executable File
11 lines
147 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# @describe Get the current time.
|
|
|
|
# @env LLM_OUTPUT=/dev/stdout The output path
|
|
|
|
main() {
|
|
date >> "$LLM_OUTPUT"
|
|
}
|