aboutsummaryrefslogtreecommitdiffstats
path: root/tools/demo_tool.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/demo_tool.sh')
-rwxr-xr-xtools/demo_tool.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/demo_tool.sh b/tools/demo_tool.sh
deleted file mode 100755
index da35e8f..0000000
--- a/tools/demo_tool.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-# @describe Demonstrate how to create a tool using Bash and how to use comment tags.
-# @option --string! Define a required string property
-# @option --string-enum![foo|bar] Define a required string property with enum
-# @option --string-optional Define a optional string property
-# @flag --boolean Define a boolean property
-# @option --integer! <INT> Define a required integer property
-# @option --number! <NUM> Define a required number property
-# @option --array+ <VALUE> Define a required string array property
-# @option --array-optional* Define a optional string array property
-
-main() {
- ( set -o posix ; set ) | grep ^argc_
- printenv | grep '^LLM_'
-}
-
-eval "$(argc --argc-eval "$0" "$@")" \ No newline at end of file