imported client release

This commit is contained in:
2024-12-15 09:21:45 -06:00
parent d7244f8c6a
commit f6b34690f1
212 changed files with 11652 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
cd "$(dirname "$0")" # Go to the script's directory
export ARRAY=( one two "three three three" four five )
. ../mo
cat << EOF | mo
Here are the items in the array:
{{#ARRAY}}
* {{.}}
{{/ARRAY}}
EOF