From 541a2cb2b8ce9651f8f441258d96517cd6a9b357 Mon Sep 17 00:00:00 2001 From: vx_clutch <98831688+vx-clutch@users.noreply.github.com> Date: Fri, 3 Oct 2025 11:37:39 -0400 Subject: [PATCH] Create upper --- bin/.local/bin/upper | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 bin/.local/bin/upper diff --git a/bin/.local/bin/upper b/bin/.local/bin/upper new file mode 100644 index 0000000..3352c6b --- /dev/null +++ b/bin/.local/bin/upper @@ -0,0 +1,37 @@ +#!/bin/sh + +# Usage: prog | $0 + +prog_name=$(basename $0) +tool_version="1.0" +year=2025 + +print_help() { + cat </dev/null || echo 0) +Copyright (C) $year vx-clutch. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +EOF +} + +while [ $# -gt 0 ]; do + case "$1" in + --help) print_help; exit 0 ;; + --version) print_version; exit 0 ;; + *) ;; + esac + shift +done + +read s +echo "$s" | tr '[:lower:]' '[:upper:]'