about summary refs log tree commit diff stats
path: root/templates/awk/src/%INIT_APPLICATION_NAME.awk
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-04-02 14:05:21 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-04-02 14:05:21 +0200
commitfa92afbf1edc7fabaa1321dd9a3483dc73d24bf0 (patch)
treef3602bfdc7c76e57afbf898a0aecfd985e4bc973 /templates/awk/src/%INIT_APPLICATION_NAME.awk
parentfeat(treewide): Also remove hard-coded values in the `templates/` dir (diff)
downloadflake-templates-fa92afbf1edc7fabaa1321dd9a3483dc73d24bf0.tar.gz
flake-templates-fa92afbf1edc7fabaa1321dd9a3483dc73d24bf0.zip
feat(common/init): Add support for replacing the variables in file names
Diffstat (limited to 'templates/awk/src/%INIT_APPLICATION_NAME.awk')
-rw-r--r--templates/awk/src/%INIT_APPLICATION_NAME.awk4
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/awk/src/%INIT_APPLICATION_NAME.awk b/templates/awk/src/%INIT_APPLICATION_NAME.awk
new file mode 100644
index 0000000..78b2356
--- /dev/null
+++ b/templates/awk/src/%INIT_APPLICATION_NAME.awk
@@ -0,0 +1,4 @@
+#!/usr/bin/env -S gawk -f
+BEGIN {
+  printf ("Hello World!\n");
+}