From 4d10d9e46fd9eb67859cff1c8a439f328d7bcd30 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Mon, 26 Jan 2026 15:00:36 -0500 Subject: [PATCH] v1.0.0 --- bin/yait | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/bin/yait b/bin/yait index f5c26bb..5db5579 100755 --- a/bin/yait +++ b/bin/yait @@ -1,7 +1,7 @@ #! /bin/sh # Highly opinionated C and SH project generator -scriptversion="0.3.1" +scriptversion="1.0.0" # # Copyright (C) 2025-2026 fSD THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR @@ -171,18 +171,6 @@ Options: --help print this help and exit --version output version information" -say() { - if [ -z "\$q" ]; then - echo "\$me: \$*" - fi -} - -lsay() { - if [ -z "\$q" ]; then - echo " => \$*" - fi -} - if ! [ \$# -gt 0 ]; then echo "\$usage" exit 0 @@ -195,8 +183,6 @@ while [ \$# -gt 0 ]; do -*) echo "\$me: Unknown option '\$1'." >&2; exit 1 ;; esac done - -say hello world EOF chmod +x "$outfile" }