diff options
| author | sigoden <sigoden@gmail.com> | 2024-05-21 08:26:47 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-21 08:26:47 +0800 |
| commit | ef43b22a8e6d4eb7388a552ba6d52d662e38fd0c (patch) | |
| tree | cf03ce9e37b5e3068aa38aa2213b558d210bc1a0 /sh/get_current_time.sh | |
| parent | e6642b5898ef3c46b2d37ab8dfce18f5db0a5618 (diff) | |
| download | llm-functions-docker-ef43b22a8e6d4eb7388a552ba6d52d662e38fd0c.tar.gz | |
feat: rewrite to accept json data from cli args other than env var (#7)
* update readme
Diffstat (limited to 'sh/get_current_time.sh')
| -rwxr-xr-x | sh/get_current_time.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sh/get_current_time.sh b/sh/get_current_time.sh new file mode 100755 index 0000000..26a25d8 --- /dev/null +++ b/sh/get_current_time.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +set -e + +# @describe Get the current time. + +main() { + date +} + +eval "$(argc --argc-eval "$0" "$@")" + |
