From fa92afbf1edc7fabaa1321dd9a3483dc73d24bf0 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 2 Apr 2024 14:05:21 +0200 Subject: feat(common/init): Add support for replacing the variables in file names --- templates/awk/src/%INIT_APPLICATION_NAME.awk | 4 ++++ templates/awk/src/TODO.awk | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 templates/awk/src/%INIT_APPLICATION_NAME.awk delete mode 100644 templates/awk/src/TODO.awk (limited to 'templates/awk/src') 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"); +} diff --git a/templates/awk/src/TODO.awk b/templates/awk/src/TODO.awk deleted file mode 100644 index 78b2356..0000000 --- a/templates/awk/src/TODO.awk +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env -S gawk -f -BEGIN { - printf ("Hello World!\n"); -} -- cgit 1.4.1