about summary refs log tree commit diff stats
path: root/templates/shell/src/main.sh
diff options
context:
space:
mode:
Diffstat (limited to 'templates/shell/src/main.sh')
-rwxr-xr-xtemplates/shell/src/main.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/shell/src/main.sh b/templates/shell/src/main.sh
new file mode 100755
index 0000000..4c4c836
--- /dev/null
+++ b/templates/shell/src/main.sh
@@ -0,0 +1,17 @@
+#!/usr/bin/env dash
+
+# shellcheck source=/dev/null
+SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH
+
+# Both are used in `version`
+# shellcheck disable=2034
+AUTHORS="Benedikt Peetz"
+# shellcheck disable=2034
+YEARS="2024"
+
+printf "Hello World!\n\n"
+
+# Show off the library provided version function
+version
+
+# vim: ft=sh